:root {
    color-scheme: light;
    --primary-color-dark: #5A4565;
    --primary-color: #71577F;
    --primary-color-light: #9B85AD;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f7f9fc;/*#f7f9fc*/ /*9B85AD*/
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

header {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 25%, #71577F 100%);
    color: #ffffff;
    padding: 64px 16px 96px;
    text-align: center;
}

header h1 {
    margin: 0 auto 24px;
    font-size: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo {
    max-width: 480px;
    width: min(100%, 480px);
    height: auto;
}

header p {
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: #000000;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(9, 30, 66, 0.2);
}

.cta-button.primary:hover,
.cta-button.primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(9, 30, 66, 0.25);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

main {
    max-width: 1100px;
    margin: -56px auto 0;
    padding: 0 24px 80px;
}

section {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    margin-bottom: 32px;
}

section h2 {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

section p {
    margin-top: 0;
    margin-bottom: 16px;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: start;
}

.profile-card {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: clamp(360px, 60vw, 520px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.profile-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.profile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 30%, rgba(2, 6, 23, 0.8) 100%);
    color: #f8fafc;
}

.profile-overlay h3 {
    margin: 0 0 8px;
    font-size: 1.6rem;
    font-weight: 600;
}

.profile-overlay span {
    font-weight: 500;
    color: #d1c4e9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    border: 1px solid #e5e9f2;
    border-radius: 16px;
    padding: 24px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #1f2933;
    font-size: 1.25rem;
}

.service-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.highlight-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 9px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.contact-grid + .contact-grid {
    margin-top: 32px;
}

.contact-card {
    border-radius: 16px;
    border: 1px solid #e5e9f2;
    padding: 24px;
    background: #f8fbff;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-line .material-symbols-outlined {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.contact-line p {
    margin: 0;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

.map-embed {
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e9f2;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.map-embed iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
}

.map-note {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: #5f6c7b;
    text-align: left;
}

footer {
    text-align: center;
    padding: 24px;
    color: #5f6c7b; /* #fff */
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    header {
        padding: 64px 16px 80px;
    }

    section {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .profile-card {
        text-align: left;
        min-height: 420px;
    }
}
