:root
{
    --navy: #0D1B3E;
    --blue: #1A3A8F;
    --green: #3FAD47;
    --green-dark: #2D8034;
    --green-light: #E8F5E9;
    --accent: #F5A623;
    --gray-50: #F8F9FC;
    --gray-100: #EEF0F5;
    --gray-200: #D8DCE8;
    --gray-400: #8B93AA;
    --gray-700: #3D4560;
    --white: #FFFFFF;
    --red-light: #FFF0F0;
    --red: #D93025;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body
{
    overflow-x: hidden;
}

body
{
    font-family: 'DM Sans', sans-serif;
    background: var(--gray-50);
    color: var(--gray-700);
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
}

/* NAV */
.site-nav {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 62px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

    .nav-links a {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 8px;
        transition: background 0.15s, color 0.15s;
        white-space: nowrap;
    }

        .nav-links a:hover {
            background: rgba(255,255,255,0.08);
            color: white;
        }

    .nav-links .nav-cta a {
        background: var(--green);
        color: white;
        font-weight: 600;
    }

        .nav-links .nav-cta a:hover {
            background: var(--green-dark);
        }

    .nav-links .nav-active a {
        color: white;
    }

.nav-social a {
    color: rgba(255,255,255,0.7) !important;
    padding: 6px 6px !important;
    display: flex;
    align-items: center;
}

    .nav-social a:hover {
        color: var(--green) !important;
        background: transparent !important;
    }

/* HAMBURGER */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    margin-left: auto;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: rgba(255,255,255,0.8);
        border-radius: 2px;
        transition: all 0.3s;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

@media (max-width: 768px) {
    .nav-inner {
        padding: 0 16px;
        height: 56px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 8px 0 16px;
        z-index: 999;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            width: 100%;
            padding: 12px 24px;
            font-size: 15px;
            border-radius: 0;
            white-space: normal;
        }

        .nav-links .nav-cta {
            padding: 8px 16px 0;
        }

            .nav-links .nav-cta a {
                display: block;
                text-align: center;
                border-radius: 8px;
                padding: 12px 24px;
                font-size: 15px;
            }

    .nav-social {
        display: none;
    }
}

.page-wrap
{
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 12px;
}

h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin: 36px 0 12px;
}

.footer {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    background: var(--navy);
    padding: 16px 40px;
    text-align: center;
    margin-top: 40px;
}

    .footer p {
        font-size: 13px;
        color: rgba(255,255,255,0.35);
        margin: 0;
    }

    .footer svg {
        max-width: 100%;
        height: auto;
    }

@media (max-width: 768px) {
    .page-wrap {
        padding: 36px 20px 56px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 21px;
        margin: 28px 0 10px;
    }

    .footer {
        padding: 16px 12px;
    }
}
