:root {
    --brand: #299cd8;
    --brand-dark: #1c6fa1;
    --header-dark: #0b2a4f;
    --header-main: #0f4e7d;
    --logo-size: 92px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1b1d29;
    background-color: #f4f6f8;
}

.site-header {
    color: #fff;
    position: relative;
    z-index: 3;
}

.header-top {
    background: var(--header-dark);
    font-size: 0.8rem;
}

.header-top-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    padding-left: calc(var(--logo-size) + 1.5rem);
}

.header-secondary {
    display: flex;
    gap: 1.25rem;
}

.header-secondary-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.header-secondary-link:hover {
    color: #fff;
}

.header-main {
    background: linear-gradient(120deg, var(--brand), var(--brand-dark));
    box-shadow: 0 10px 30px rgba(13, 60, 96, 0.2);
}

.header-main-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: calc(var(--logo-size) + 1.5rem);
}

.header-primary {
    gap: 1.75rem;
}

.header-primary-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.header-primary-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-actions {
    position: absolute;
    right: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.site-logo {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: var(--logo-size);
    height: var(--logo-size);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.85rem;
    padding: 0.35rem;
}

.site-logo img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.site-logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.1;
}

.hero {
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-carousel {
    width: 100%;
}

.hero-slide {
    height: clamp(300px, 40vw, 560px);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(8, 44, 82, 0.75) 0%, rgba(8, 44, 82, 0.4) 45%, rgba(8, 44, 82, 0) 70%);
    color: #fff;
}

.hero-content {
    max-width: 560px;
}

.hero-title {
    font-size: clamp(2.1rem, 3.2vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-actions .btn {
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
}

@media (max-width: 992px) {
    :root {
        --logo-size: 74px;
    }

    .header-top-inner,
    .header-main-inner {
        padding-left: calc(var(--logo-size) + 1rem);
        justify-content: flex-end;
    }

    .header-primary,
    .header-secondary {
        display: none;
    }

    .header-actions {
        position: static;
        margin-left: auto;
    }

    .site-logo {
        left: 1rem;
    }
}

@media (max-width: 576px) {
    .header-actions {
        gap: 0.35rem;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

.site-main {
    min-height: 60vh;
}

.site-footer {
    background: #fff;
    border-top: 1px solid #e5e9f2;
}

.site-page-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}
