/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --navy: #062a52;

    --dark-navy: #031d38;

    --deep-blue: #082d55;

    --blue: #123f6d;

    --gold: #c99a3d;

    --light-gold: #e3bd69;

    --white: #ffffff;

    --light-bg: #f7f8fa;

    --text: #26364a;

    --muted: #6b7785;

    --border: #e8e8e8;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

}


a {

    text-decoration: none;

    color: inherit;

}


button {

    font-family: inherit;

}


.container {

    width: min(1180px, 92%);

    margin: auto;

}



/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    height: 40px;

    background: var(--dark-navy);

    color: #dce6f2;

    font-size: 12px;

    border-bottom:
        1px solid
        rgba(201, 154, 61, 0.22);

}


.topbar-content {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.topbar-left,
.topbar-right {

    display: flex;

    align-items: center;

}


.topbar-left {

    gap: 13px;

}


.topbar-right {

    gap: 13px;

}


.topbar a {

    color: #dce6f2;

    transition: color 0.25s ease;

}


.topbar a:hover {

    color: var(--light-gold);

}


.top-icon {

    color: var(--light-gold);

    margin-right: 5px;

}


.top-divider {

    width: 1px;

    height: 13px;

    background:
        rgba(255, 255, 255, 0.22);

}



/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    height: 94px;

    background: var(--white);

    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom:
        1px solid var(--border);

    box-shadow:
        0 4px 20px
        rgba(4, 29, 58, 0.06);

}


.nav-content {

    height: 100%;
 width: 100%;
 max-width: 1300px;
    display: flex;

    align-items: center;

    justify-content: space-between;

}



/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    height: 76px;

    flex-shrink: 0;

}


.logo img {

    width: 90px;

    height: 90px;

    object-fit: contain;

    display: block;

}


.logo-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1.1;

}


.logo-name {

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    font-weight: 700;

    letter-spacing: 1.5px;

    white-space: nowrap;

}


.logo-tagline {

    color: var(--gold);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.2px;

    margin-top: 6px;

    white-space: nowrap;

}



/* =========================================================
   NAVIGATION
========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 3px;

    height: 100%;

}


.nav-link {

    position: relative;

    display: flex;

    align-items: center;

    gap: 8px;

    height: 100%;

    padding: 0 13px;

    color: var(--navy);

    font-size: 15px;

    font-weight: 600;

    transition:
        color 0.25s ease;

}


.nav-link:hover {

    color: var(--gold);

}


.nav-link.active {

    color: var(--gold);

}



/* =========================================================
   ACTIVE UNDERLINE
========================================================= */

.nav-link::after {

    content: "";

    position: absolute;

    left: 13px;

    right: 13px;

    bottom: 20px;

    height: 2px;

    background: var(--gold);

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 0.3s ease;

}


.nav-link:hover::after,
.nav-link.active::after {

    transform:
        scaleX(1);

}



/* =========================================================
   DROPDOWN WRAPPER
========================================================= */

.nav-dropdown {

    position: relative;

    height: 100%;

    display: flex;

    align-items: center;

}



/* =========================================================
   PROFESSIONAL CHEVRON
========================================================= */

.chevron {

    width: 7px;

    height: 7px;

    border-right:
        1.5px solid var(--navy);

    border-bottom:
        1.5px solid var(--navy);

    transform:
        rotate(45deg)
        translateY(-2px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;

}


.nav-dropdown:hover .chevron {

    border-color: var(--gold);

    transform:
        rotate(225deg)
        translateY(-1px);

}



/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown-menu {

    position: absolute;

    top: calc(100% + 1px);

    left: 50%;

    width: 250px;

    padding: 8px 0;

    background: var(--white);

    border-top:
        3px solid var(--gold);

    border-radius:
        0 0 6px 6px;

    box-shadow:
        0 14px 35px
        rgba(4, 29, 58, 0.15);

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(-50%)
        translateY(12px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

}


/* Dropdown top triangle */

.dropdown-menu::before {

    content: "";

    position: absolute;

    top: -9px;

    left: 50%;

    width: 14px;

    height: 14px;

    background: var(--gold);

    transform:
        translateX(-50%)
        rotate(45deg);

    z-index: -1;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);

}



/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.dropdown-menu a {

    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 48px;

    padding: 10px 18px;

    color: var(--text);

    font-size: 13px;

    font-weight: 500;

    border-bottom:
        1px solid #f0f0f0;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        padding-left 0.25s ease;

}


.dropdown-menu a:last-child {

    border-bottom: none;

}


.dropdown-menu a:hover {

    color: var(--navy);

    background:
        #faf8f2;

    padding-left: 23px;

}



/* =========================================================
   DROPDOWN NUMBER
========================================================= */

.dropdown-icon {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: var(--gold);

    background:
        rgba(201, 154, 61, 0.10);

    border-radius: 50%;

    font-size: 9px;

    font-weight: 700;

}



/* =========================================================
   DONATE BUTTON
========================================================= */

.donate-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-left: 12px;

    padding: 14px 20px;

    background: var(--gold);

    color: var(--white);

    border: 1px solid var(--gold);

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 5px 15px
        rgba(201, 154, 61, 0.22);

    transition:
        all 0.3s ease;

}


.donate-arrow {

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;

}


.donate-btn:hover {

    background: var(--navy);

    border-color: var(--navy);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(6, 42, 82, 0.18);

}


.donate-btn:hover .donate-arrow {

    transform:
        translateX(4px);

}



/* =========================================================
   MOBILE BUTTON
========================================================= */

.menu-toggle {

    display: none;

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;

    color: var(--navy);

    font-size: 27px;

    cursor: pointer;

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1150px) {


    .nav-link {

        padding: 0 8px;

        font-size: 13px;

    }


    .nav-link::after {

        left: 8px;

        right: 8px;

    }


    .donate-btn {

        margin-left: 6px;

        padding: 12px 14px;

    }


    .logo-name {

        font-size: 18px;

    }


    .logo-tagline {

        font-size: 7px;

    }

}



/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 900px) {

    .topbar {
        height: auto;
        padding: 8px 0;
    }

    .topbar-content {
        justify-content: center;
    }

    .topbar-left {
        display: none;
    }

    .topbar-right {
        gap: 10px;
    }


    /* Navbar */

    .navbar {
        height: 78px;
        
    }


    .logo {
        height: 65px;
        gap: 9px;
        margin-left: 20px;
    }

    .logo img {
        width: 48px;
        height: 48px;
    }

    .logo-name {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 0.8px;
        margin-top: 4px;
    }


    /* =========================
       MOBILE MENU BUTTON
    ========================= */

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        border: 1px solid #e3e3e3;

        border-radius: 5px;

        background: #ffffff;

        color: #062a52;

        font-size: 26px;

        cursor: pointer;
        margin-right: 20px;
        transition: all 0.3s ease;
    }

    .menu-toggle:hover {
        background: #062a52;
        color: #ffffff;
        border-color: #062a52;
    }


    /* =========================
       MOBILE NAVIGATION
    ========================= */

    .nav-menu {

        position: absolute;

        top: 78px;

        left: 0;

        width: 100%;

        height: auto;

        max-height: calc(100vh - 78px);

        overflow-y: auto;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px 5% 20px;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 15px 30px rgba(4, 29, 58, 0.12);

        /* IMPORTANT */

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    /* JS adds this class */

    .nav-menu.mobile-open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* =========================
       NORMAL NAV LINKS
    ========================= */

    .nav-link {

        width: 100%;

        height: auto;

        min-height: 52px;

        padding: 15px 5px;

        justify-content: space-between;

        border-bottom: 1px solid #eeeeee;

        font-size: 14px;
    }


    .nav-link::after {

        display: none;
    }


    .nav-link.active {

        color: #c99a3d;

        background: #faf8f2;

        padding-left: 12px;
    }




    /* =========================
       HERO
    ========================= */

    .hero {

        min-height:
            calc(100vh - 118px);

        padding: 70px 0;
    }


    .hero h1 {

        font-size: 48px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .topbar-right {
        font-size: 10px;
    }

    .top-divider {
        height: 10px;
    }

    .logo img {
        width: 43px;
        height: 43px;
    }

    .logo-name {
        font-size: 15px;
    }

    .logo-tagline {
        font-size: 6px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 15px;
    }

}

/* =========================================================
   MOBILE DROPDOWN - FIXED
========================================================= */

@media (max-width: 900px) {

    /* =========================================
       MOBILE NAV MENU
    ========================================= */

    .nav-menu {
        position: absolute;

        top: 78px;
        left: 0;
        right: 0;

        width: 100% !important;

        height: auto;

        max-height: calc(100vh - 78px);

        overflow-x: hidden;
        overflow-y: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px 5% 20px;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow:
            0 15px 35px
            rgba(4, 29, 58, 0.12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    /* MENU OPEN */

    .nav-menu.mobile-open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* =========================================
       NORMAL LINKS
    ========================================= */

    .nav-link {

        width: 100% !important;

        min-height: 52px;

        height: auto;

        padding: 15px 5px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        font-size: 14px;

        border-bottom: 1px solid #eeeeee;
    }


    .nav-link::after {
        display: none;
    }


    .nav-link.active {

        color: var(--gold);

        background: #faf8f2;

        padding-left: 12px;
    }


    /* =========================================
       DROPDOWN WRAPPER
    ========================================= */

    .nav-dropdown {

        position: relative;

        width: 100% !important;

        height: auto !important;

        display: block;

        overflow: visible;
    }


    /* Dropdown heading */

    .nav-dropdown > .dropdown-link {

        width: 100% !important;

        min-height: 52px;

        height: auto;

        padding: 15px 5px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        border-bottom: 1px solid #eeeeee;
    }


    /* =========================================
       CHEVRON
    ========================================= */

    .chevron {

        width: 8px;
        height: 8px;

        margin-right: 8px;

        border-right:
            1.5px solid var(--navy);

        border-bottom:
            1.5px solid var(--navy);

        transform:
            rotate(45deg);

        transition:
            transform 0.25s ease,
            border-color 0.25s ease;
    }


    /* When dropdown open */

    .nav-dropdown.mobile-dropdown-open
    .chevron {

        transform:
            rotate(225deg);

        border-color:
            var(--gold);
    }


    /* =========================================
       IMPORTANT DROPDOWN FIX
    ========================================= */

    .dropdown-menu {

        /* Override ALL desktop positioning */

        position: static !important;

        top: auto !important;

        left: auto !important;

        right: auto !important;

        transform: none !important;

        width: 100% !important;

        min-width: 0 !important;

        max-width: none !important;

        margin: 0 !important;

        padding: 0 !important;

        border-top: none !important;

        border-right: none !important;

        border-bottom: none !important;

        border-left:
            3px solid var(--gold);

        border-radius: 0 !important;

        background:
            #fafafa;

        box-shadow: none !important;

        /* Closed */

        display: none;

        opacity: 1 !important;

        visibility: visible !important;

        pointer-events: auto;
    }


    /* =========================================
       OPEN DROPDOWN
    ========================================= */

    .nav-dropdown.mobile-dropdown-open
    .dropdown-menu {

        display: block !important;

        position: static !important;

        width: 100% !important;

        transform: none !important;
    }


    /* Remove triangle */

    .dropdown-menu::before {

        display: none !important;

        content: none !important;
    }


    /* =========================================
       DROPDOWN ITEMS
    ========================================= */

    .dropdown-menu a {

        display: flex !important;

        align-items: center;

        width: 100% !important;

        min-width: 0 !important;

        min-height: 46px;

        height: auto;

        padding:
            11px 15px !important;

        margin: 0 !important;

        color: var(--text);

        font-size: 13px;

        font-weight: 500;

        white-space: normal;

        overflow: visible;

        border-bottom:
            1px solid #eeeeee;

        background:
            #fafafa;

        box-sizing: border-box;

        transition:
            background 0.2s ease,
            color 0.2s ease,
            padding-left 0.2s ease;
    }


    .dropdown-menu a:hover {

        color: var(--navy);

        background:
            #f4f1e9;

        padding-left:
            20px !important;
    }


    .dropdown-menu a:last-child {

        border-bottom: none;
    }


    /* =========================================
       DROPDOWN NUMBER / ICON
    ========================================= */

    .dropdown-icon {

        width: 25px;
        height: 25px;

        flex: 0 0 25px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 50%;

        background:
            rgba(201, 154, 61, 0.10);

        color: var(--gold);

        font-size: 9px;
    }


    /* =========================================
       DONATE BUTTON
    ========================================= */

    .donate-btn {

        width: 100% !important;

        min-height: 50px;

        margin:
            15px 0 0 !important;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 10px;
    }

}

/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 134px);
    min-height: 650px;
    overflow: hidden;
}

/* =========================================
   PROFESSIONAL SMOOTH HERO SLIDER
========================================= */

.hero-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    /* NO ZOOM / NO MOVEMENT */
    transform: none;

    /* Smooth fade */
    transition:
        opacity 1.5s ease-in-out,
        visibility 0s linear 1.5s;
}


/* ACTIVE SLIDE */

.hero-slide.active {
    opacity: 1;
    visibility: visible;

    transform: none;

    transition:
        opacity 1.5s ease-in-out,
        visibility 0s linear 0s;
}

/* =========================================
   DARK OVERLAY
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(3, 29, 56, 0.92) 0%,
        rgba(3, 29, 56, 0.68) 40%,
        rgba(3, 29, 56, 0.28) 75%,
        rgba(3, 29, 56, 0.08) 100%
    );
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 5;

    width: min(1380px, 90%);
    margin: 0 auto;
}

.hero-text {
    max-width: 850px;
}


/* =========================================
   SMALL GOLD TITLE
========================================= */

.hero-small-title {
    display: block;

    margin-bottom: 25px;

    color: #e5b84b;

    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================================
   MAIN HEADING
========================================= */

.hero-slider h1 {
    margin: 0 0 28px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 78px;
    font-weight: 700;

    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-slider h1 span {
    display: block;
    color: #e5b84b;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-slider p {
    max-width: 650px;

    margin: 0 0 38px;

    color: #eeeeee;

    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* GOLD BUTTON */

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    min-width: 292px;

    padding: 21px 30px;

    background: #d29b2f;
    color: #ffffff;

    border: 1px solid #d29b2f;
    border-radius: 4px;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.primary-btn span {
    font-size: 23px;
    transition: transform 0.3s ease;
}

.primary-btn:hover {
    background: #e5ad3d;
    color: #ffffff;

    transform: translateY(-3px);
}

.primary-btn:hover span {
    transform: translateX(5px);
}


/* SECONDARY BUTTON */

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 20px 27px;

    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #062a52;
}


/* =========================================
   DOTS
========================================= */

.slider-dots {
    position: absolute;
    z-index: 20;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;
    gap: 9px;
}

.dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid #ffffff;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;
}

.dot.active {
    width: 28px;

    border-radius: 20px;

    background: #d29b2f;
    border-color: #d29b2f;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .hero-slider h1 {
        font-size: 60px;
    }

    .hero-text {
        max-width: 700px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .hero-slider {
        height: calc(100vh - 118px);
        min-height: 620px;
    }

    .hero-content {
        width: 88%;
    }

    .hero-small-title {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-slider h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .hero-slider p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-btn {
        min-width: 250px;
        padding: 17px 22px;
    }

    .secondary-btn {
        padding: 16px 22px;
    }
}

/* =========================================================
   PROFESSIONAL FOOTER
========================================================= */

.site-footer {
    background: #031d38;
    color: #dce6f2;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    padding: 75px 0 65px;
    
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 55px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: block;
}

.footer-logo h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.footer-logo span {
    color: var(--light-gold);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-brand > p {
    margin: 0;

    color: #aebdcd;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 4px;

    color: #dce6f2;

    font-size: 12px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin: 3px 0 12px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-weight: 600;
}

.footer-line {
    display: block;

    width: 35px;
    height: 2px;

    margin-bottom: 20px;

    background: var(--gold);
}

.footer-column > a {
    margin-bottom: 12px;

    color: #aebdcd;

    font-size: 13px;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-column > a:hover {
    color: var(--light-gold);
    padding-left: 5px;
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 17px;

    color: #aebdcd;

    font-size: 13px;
    line-height: 1.6;
}

.contact-icon {
    width: 25px;
    flex-shrink: 0;

    color: var(--light-gold);

    font-size: 15px;
}

.contact-item a {
    color: #aebdcd;

    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: var(--light-gold);
}


/* =========================================================
   FOOTER DONATE BUTTON
========================================================= */

.footer-donate-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;

    width: 155px;

    margin-top: 7px;
    padding: 12px 16px !important;

    background: var(--gold);

    color: #ffffff !important;

    border: 1px solid var(--gold);
    border-radius: 4px;

    font-size: 12px !important;
    font-weight: 700;

    transition: all 0.3s ease !important;
}

.footer-donate-btn:hover {
    background: transparent;

    color: var(--light-gold) !important;

    border-color: var(--light-gold);

    padding-left: 16px !important;
    transform: translateY(-2px);
}

.footer-donate-btn span {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.footer-donate-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    background: rgba(0, 0, 0, 0.18);

    border-top:
        1px solid
        rgba(255,255,255,0.10);

    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #8799ac;

    font-size: 11px;
    letter-spacing: 0.2px;
}

.footer-bottom strong {
    color: #c7d2de;
}

.footer-credit {
    text-align: right;
}

.footer-credit a {
    color: var(--light-gold);

    font-weight: 600;

    transition: color 0.25s ease;
}

.footer-credit a:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 0 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo img {
        width: 58px;
        height: 58px;
    }

    .footer-logo h3 {
        font-size: 19px;
    }

    .footer-bottom {
        padding: 18px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .footer-credit {
        text-align: center;
    }

}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* =========================================================
   IMAGE
========================================================= */

.about-image-wrap {
    position: relative;
    padding: 0 25px 25px 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 5px;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(3, 29, 56, 0.25)
        );
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


/* GOLD DECORATION */

.about-image-wrap::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 110px;
    height: 110px;

    background: var(--gold);

    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
}


/* EXPERIENCE BOX */

.about-experience {
    position: absolute;

    right: 0;
    bottom: 0;

    z-index: 3;

    width: 190px;
    min-height: 105px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 18px;

    background: var(--navy);

    color: #ffffff;

    border-radius: 4px;

    box-shadow:
        0 12px 30px
        rgba(3, 29, 56, 0.18);
}

.about-experience strong {
    color: var(--light-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;
    line-height: 1;
}

.about-experience span {
    color: #dce6f2;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.5;
}


/* =========================================================
   CONTENT
========================================================= */

.about-content {
    max-width: 570px;
}

.section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.about-content h2 {
    margin: 0 0 22px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.12;
}

.about-content h2 span {
    display: block;
    color: var(--gold);
}

.about-content > p {
    margin: 0 0 17px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.about-content .about-intro {
    color: #425267;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}

.feature-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    background:
        rgba(201, 154, 61, 0.12);

    color: var(--gold);

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}

.about-feature h4 {
    margin: 0 0 5px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
}

.about-feature p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   BUTTON
========================================================= */

.about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-width: 190px;

    padding: 14px 20px;

    background: var(--gold);

    color: #ffffff;

    border: 1px solid var(--gold);
    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.about-btn span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: var(--navy);
    border-color: var(--navy);

    transform: translateY(-2px);
}

.about-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   IMPACT STRIP
========================================================= */

.impact-strip {
    background: var(--navy);

    padding: 35px 0;

    border-top:
        1px solid
        rgba(201, 154, 61, 0.25);

    border-bottom:
        1px solid
        rgba(201, 154, 61, 0.25);
}

.impact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.impact-item {
    text-align: center;

    padding: 5px 20px;

    border-right:
        1px solid
        rgba(255,255,255,0.12);
}

.impact-item:last-child {
    border-right: none;
}

.impact-item strong {
    display: block;

    margin-bottom: 6px;

    color: var(--light-gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 32px;
}

.impact-item span {
    color: #c4d0dc;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-section {
        padding: 75px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image {
        height: 450px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .about-section {
        padding: 60px 0;
    }

    .about-image-wrap {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .about-image {
        height: 350px;
    }

    .about-experience {
        width: 165px;
        min-height: 90px;
        padding: 14px;
    }

    .about-experience strong {
        font-size: 30px;
    }

    .about-experience span {
        font-size: 10px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }

    .impact-item:nth-child(2) {
        border-right: none;
    }

    .impact-item:nth-child(3),
    .impact-item:nth-child(4) {
        border-top:
            1px solid
            rgba(255,255,255,0.12);

        padding-top: 25px;
    }

    .impact-item strong {
        font-size: 27px;
    }

}

/* =========================================================
   OUR WORK SECTION
========================================================= */

.our-work-section {
    position: relative;

    padding: 105px 0 110px;

    background: #f7f8fa;

    overflow: hidden;
}


/* =========================================================
   HEADING AREA
========================================================= */

.work-heading {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;
}


.work-heading-left {
    max-width: 650px;
}


.work-heading-left .section-label {
    margin-bottom: 18px;
}


.work-heading-left h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 44px);

    line-height: 1.15;

    letter-spacing: -1px;
}


.work-heading-left h2 span {
    display: block;

    color: var(--gold);
}


.work-heading-right {
    max-width: 500px;

    padding-bottom: 5px;
}


.work-heading-right p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   WORK GRID
========================================================= */

.work-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   WORK CARD
========================================================= */

.work-card {
    position: relative;

    min-height: 380px;

    padding: 28px 25px 30px;

    background: var(--white);

    border: 1px solid #e9ebee;

    border-radius: 5px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.work-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--gold);

    transition:
        width 0.4s ease;
}


.work-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(201, 154, 61, 0.35);

    box-shadow:
        0 18px 40px
        rgba(4, 29, 58, 0.10);
}


.work-card:hover::before {
    width: 100%;
}


/* =========================================================
   CARD TOP
========================================================= */

.work-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 55px;
}


.work-number {
    color: #cfd5dc;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.work-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(201, 154, 61, 0.10);

    color: var(--gold);

    font-size: 25px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.work-card:hover .work-icon {
    background: var(--gold);

    color: var(--white);

    transform: rotate(5deg);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.work-card-content h3 {
    margin: 0 0 14px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    line-height: 1.25;
}


.work-card-content p {
    margin: 0 0 25px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   CARD LINK
========================================================= */

.work-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    transition:
        color 0.3s ease;
}


.work-link span {
    color: var(--gold);

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.work-link:hover {
    color: var(--gold);
}


.work-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.work-bottom {
    margin-top: 45px;

    padding-top: 28px;

    border-top:
        1px solid #e2e5e9;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.work-bottom p {
    margin: 0;

    color: var(--navy);

    font-size: 15px;

    font-weight: 600;
}


.work-btn {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 13px 21px;

    background: var(--gold);

    color: var(--white);

    border: 1px solid var(--gold);

    border-radius: 4px;

    font-size: 12px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}


.work-btn span {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.work-btn:hover {
    background: var(--navy);

    border-color: var(--navy);

    transform: translateY(-2px);
}


.work-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .work-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .work-card {
        min-height: 350px;
    }

}


/* =========================================================
   TABLET / SMALL
========================================================= */

@media (max-width: 800px) {

    .our-work-section {
        padding: 80px 0 85px;
    }

    .work-heading {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 40px;
    }

    .work-heading-right {
        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 550px) {

    .our-work-section {
        padding: 65px 0 70px;
    }

    .work-heading {
        gap: 15px;
    }

    .work-heading-left h2 {
        font-size: 36px;
    }

    .work-heading-right p {
        font-size: 14px;

        line-height: 1.75;
    }

    .work-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .work-card {
        min-height: auto;

        padding: 25px 22px 28px;
    }

    .work-card-top {
        margin-bottom: 40px;
    }

    .work-card-content h3 {
        font-size: 21px;
    }

    .work-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

}

/* =========================================================
   FEATURED INITIATIVES
========================================================= */

.initiatives-section {
    padding: 105px 0 110px;

    background: var(--white);
}


/* =========================================================
   HEADING
========================================================= */

.initiatives-heading {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 55px;
}


.initiatives-heading h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.12;

    letter-spacing: -1px;
}


.initiatives-heading h2 span {
    display: block;

    color: var(--gold);
}


.initiatives-heading > p {
    max-width: 480px;

    margin: 0 0 4px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   GRID
========================================================= */

.initiatives-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* =========================================================
   CARD
========================================================= */

.initiative-card {
    background: var(--white);

    border: 1px solid #e7e9ec;

    border-radius: 5px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.initiative-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(4, 29, 58, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.initiative-image {
    position: relative;

    height: 245px;

    overflow: hidden;

    background: #eee;
}


.initiative-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.initiative-card:hover
.initiative-image img {
    transform: scale(1.05);
}


/* =========================================================
   CATEGORY
========================================================= */

.initiative-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 11px;

    background: var(--gold);

    color: var(--white);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;

    border-radius: 3px;
}


/* =========================================================
   CONTENT
========================================================= */

.initiative-content {
    position: relative;

    padding: 28px 25px 30px;
}


.initiative-number {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.initiative-content h3 {
    margin: 0 0 14px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    line-height: 1.3;
}


.initiative-content p {
    margin: 0 0 23px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   LINK
========================================================= */

.initiative-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.initiative-link span {
    color: var(--gold);

    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.initiative-link:hover {
    color: var(--gold);
}


.initiative-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

.initiatives-bottom {
    display: flex;

    justify-content: center;

    margin-top: 45px;
}


.initiatives-btn {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 14px 23px;

    background: var(--navy);

    color: var(--white);

    border: 1px solid var(--navy);

    border-radius: 4px;

    font-size: 12px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.initiatives-btn span {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.initiatives-btn:hover {
    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-2px);
}


.initiatives-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .initiatives-section {
        padding: 80px 0 85px;
    }

    .initiatives-heading {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 40px;
    }

    .initiatives-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .initiatives-section {
        padding: 65px 0 70px;
    }

    .initiatives-heading h2 {
        font-size: 36px;
    }

    .initiatives-heading > p {
        font-size: 14px;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .initiative-image {
        height: 220px;
    }

    .initiative-content {
        padding: 24px 21px 27px;
    }

}

/* =========================================================
   WHY AK FOUNDATION SECTION
========================================================= */

.why-section {
    position: relative;

    padding: 110px 0;

    background: #f7f8fa;

    overflow: hidden;
}


/* =========================================================
   GRID
========================================================= */

.why-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 85px;
}


/* =========================================================
   IMAGE
========================================================= */

.why-image {
    position: relative;

    min-height: 580px;

    overflow: hidden;

    border-radius: 6px;

    box-shadow:
        0 20px 50px
        rgba(4, 29, 58, 0.12);
}

.why-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(3, 29, 56, 0.35)
        );

    pointer-events: none;
}

.why-image img {
    width: 100%;
    height: 100%;

    min-height: 580px;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.why-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.why-image-badge {
    position: absolute;

    z-index: 2;

    left: 30px;
    bottom: 30px;

    min-width: 190px;

    padding: 18px 22px;

    background: rgba(3, 29, 56, 0.92);

    border-left:
        3px solid var(--gold);

    border-radius: 3px;

    color: #ffffff;
}

.why-image-badge strong {
    display: block;

    margin-bottom: 4px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
}

.why-image-badge span {
    color: var(--light-gold);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   CONTENT
========================================================= */

.why-content {
    max-width: 650px;
}

.why-content .section-label {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--gold);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.why-content h2 {
    margin: 0 0 22px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 43px);

    line-height: 1.12;

    font-weight: 700;
}

.why-content h2 span {
    display: block;

    color: var(--gold);
}


/* =========================================================
   INTRO
========================================================= */

.why-intro {
    max-width: 620px;

    margin: 0 0 32px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   WHY ITEM
========================================================= */

.why-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 18px 0;

    border-bottom:
        1px solid #eeeeee;
}

.why-item:first-of-type {
    border-top:
        1px solid #eeeeee;
}


/* =========================================================
   ICON
========================================================= */

.why-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 2px;

    background:
        rgba(201, 154, 61, 0.10);

    border:
        1px solid
        rgba(201, 154, 61, 0.25);

    border-radius: 50%;
}

.why-icon span {
    color: var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   ITEM CONTENT
========================================================= */

.why-item-content h3 {
    margin: 0 0 5px;

    color: var(--navy);

    font-size: 16px;

    font-weight: 700;
}

.why-item-content p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   BUTTON
========================================================= */

.why-btn {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    margin-top: 30px;

    padding: 15px 23px;

    background: var(--gold);

    color: #ffffff;

    border:
        1px solid var(--gold);

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}

.why-btn span {
    font-size: 19px;

    transition:
        transform 0.3s ease;
}

.why-btn:hover {
    background: var(--navy);

    border-color: var(--navy);

    transform:
        translateY(-2px);
}

.why-btn:hover span {
    transform:
        translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .why-section {
        padding: 85px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .why-image {
        min-height: 500px;

        max-width: 700px;

        width: 100%;

        margin: auto;
    }

    .why-image img {
        min-height: 500px;
    }

    .why-content {
        max-width: 750px;

        margin: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .why-section {
        padding: 65px 0;
    }

    .why-grid {
        gap: 40px;
    }

    .why-image {
        min-height: 400px;

        border-radius: 5px;
    }

    .why-image img {
        min-height: 400px;
    }

    .why-image-badge {
        left: 20px;
        bottom: 20px;

        padding: 15px 18px;
    }

    .why-image-badge strong {
        font-size: 18px;
    }

    .why-content .section-label {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .why-content h2 {
        font-size: 34px;
    }

    .why-intro {
        font-size: 14px;
    }

    .why-item {
        gap: 13px;

        padding: 15px 0;
    }

    .why-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .why-item-content h3 {
        font-size: 15px;
    }

    .why-item-content p {
        font-size: 12px;
    }

    .why-btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   GET INVOLVED / DONATE CTA
========================================================= */

.get-involved-section {
    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            #031d38 0%,
            #062a52 55%,
            #082d55 100%
        );

    overflow: hidden;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.get-involved-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -150px;
    top: -180px;

    border: 1px solid
        rgba(201, 154, 61, 0.18);

    border-radius: 50%;
}

.get-involved-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -120px;
    bottom: -150px;

    border: 1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


/* =========================================================
   OVERLAY
========================================================= */

.get-involved-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.98),
            rgba(6, 42, 82, 0.92)
        );

    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.get-involved-content {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(300px, 0.6fr);

    align-items: center;

    gap: 80px;
}


/* =========================================================
   LEFT TEXT
========================================================= */

.get-involved-text {
    max-width: 720px;
}

.get-involved-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--light-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.get-involved-text h2 {
    margin: 0 0 22px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 5vw, 62px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;
}

.get-involved-text h2 span {
    display: block;

    color: var(--light-gold);
}

.get-involved-text p {
    max-width: 650px;

    margin: 0 0 35px;

    color: #d9e2ec;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.get-involved-buttons {
    display: flex;

    align-items: center;

    gap: 14px;
}


/* DONATE */

.cta-donate-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    min-width: 175px;

    padding: 16px 22px;

    background: var(--gold);

    color: var(--white);

    border: 1px solid var(--gold);

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}

.cta-donate-btn span {
    margin-left: 15px;

    font-size: 20px;

    transition:
        transform 0.3s ease;
}

.cta-donate-btn:hover {
    background: var(--white);

    color: var(--navy);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.15);
}

.cta-donate-btn:hover span {
    transform:
        translateX(5px);
}


/* VOLUNTEER */

.cta-volunteer-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 23px;

    background: transparent;

    color: var(--white);

    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    border-radius: 4px;

    font-size: 14px;

    font-weight: 600;

    transition:
        all 0.3s ease;
}

.cta-volunteer-btn:hover {
    background: var(--white);

    color: var(--navy);

    border-color: var(--white);

    transform:
        translateY(-3px);
}


/* =========================================================
   RIGHT CTA BOX
========================================================= */

.get-involved-box {
    position: relative;

    padding: 38px 34px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 6px;

    backdrop-filter: blur(5px);
}


/* GOLD TOP LINE */

.get-involved-box::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;
    right: 30px;

    height: 3px;

    background: var(--gold);
}


/* =========================================================
   ICON
========================================================= */

.cta-box-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background:
        rgba(201, 154, 61, 0.14);

    color: var(--light-gold);

    border-radius: 50%;

    font-size: 25px;
}


/* =========================================================
   BOX TITLE
========================================================= */

.get-involved-box h3 {
    margin: 0 0 14px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    line-height: 1.3;
}


/* =========================================================
   BOX TEXT
========================================================= */

.get-involved-box p {
    margin: 0 0 25px;

    color: #cbd6e2;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   LINE
========================================================= */

.cta-box-line {
    width: 45px;
    height: 2px;

    margin-bottom: 18px;

    background: var(--gold);
}


/* =========================================================
   BOX LABEL
========================================================= */

.get-involved-box > span {
    color: var(--light-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .get-involved-section {
        padding: 85px 0;
    }

    .get-involved-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .get-involved-text {
        max-width: 700px;
    }

    .get-involved-box {
        max-width: 550px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .get-involved-section {
        padding: 70px 0;
    }

    .get-involved-text h2 {
        font-size: 38px;

        letter-spacing: -0.5px;
    }

    .get-involved-text p {
        font-size: 14px;

        line-height: 1.7;
    }

    .get-involved-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }

    .cta-donate-btn,
    .cta-volunteer-btn {
        width: 100%;

        justify-content: center;
    }

    .cta-donate-btn {
        min-width: 0;
    }

    .get-involved-box {
        padding: 32px 25px;
    }

    .get-involved-box h3 {
        font-size: 24px;
    }

}

/* =========================================================
   TESTIMONIALS / COMMUNITY STORIES
========================================================= */

.stories-section {
    padding: 105px 0;

    background: #f7f8fa;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.stories-heading {
    display: grid;

    grid-template-columns:
        1fr 0.8fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 60px;
}

.stories-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.stories-heading h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 50px;

    line-height: 1.12;

    font-weight: 700;
}

.stories-heading h2 span {
    color: var(--gold);
}

.stories-heading > p {
    max-width: 520px;

    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   STORIES GRID
========================================================= */

.stories-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* =========================================================
   STORY CARD
========================================================= */

.story-card {
    position: relative;

    min-height: 350px;

    padding: 38px 32px 30px;

    background: #ffffff;

    border: 1px solid #e6e8eb;

    border-radius: 5px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.story-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--gold);

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}

.story-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(201, 154, 61, 0.35);

    box-shadow:
        0 18px 40px
        rgba(4, 29, 58, 0.10);
}

.story-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   QUOTE ICON
========================================================= */

.story-quote {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background:
        rgba(201, 154, 61, 0.10);

    color: var(--gold);

    border-radius: 50%;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 35px;

    line-height: 1;
}


/* =========================================================
   STORY TEXT
========================================================= */

.story-text {
    margin: 0;

    color: #4c5a6a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    line-height: 1.8;

    font-style: italic;
}


/* =========================================================
   PERSON
========================================================= */

.story-person {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 35px;

    padding-top: 22px;

    border-top:
        1px solid #eeeeee;
}

.story-avatar {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: var(--white);

    border-radius: 50%;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    font-weight: 700;
}

.story-person-info h4 {
    margin: 0 0 4px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;
}

.story-person-info span {
    color: var(--muted);

    font-size: 11px;

    letter-spacing: 0.3px;
}


/* =========================================================
   FEATURED STORY
========================================================= */

.featured-story {
    background: var(--dark-navy);

    border-color: var(--dark-navy);
}

.featured-story .story-quote {
    background:
        rgba(201, 154, 61, 0.18);

    color: var(--light-gold);
}

.featured-story .story-text {
    color: #e1e8ef;
}

.featured-story .story-person {
    border-color:
        rgba(255, 255, 255, 0.12);
}

.featured-story .story-avatar {
    background: var(--gold);
}

.featured-story .story-person-info h4 {
    color: var(--white);
}

.featured-story .story-person-info span {
    color: #aebdcc;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.stories-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 48px;
}

.stories-bottom-line {
    width: 35px;
    height: 2px;

    background: var(--gold);
}

.stories-bottom p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    font-weight: 500;
}

.stories-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.25s ease;
}

.stories-bottom a span {
    color: var(--gold);

    font-size: 18px;

    transition:
        transform 0.25s ease;
}

.stories-bottom a:hover {
    color: var(--gold);
}

.stories-bottom a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .stories-section {
        padding: 85px 0;
    }

    .stories-heading {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 45px;
    }

    .stories-heading h2 {
        font-size: 43px;
    }

    .stories-heading > p {
        max-width: 650px;
    }

    .stories-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .story-card:last-child {
        grid-column:
            1 / -1;

        max-width: 50%;
        width: 100%;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .stories-section {
        padding: 70px 0;
    }

    .stories-heading {
        margin-bottom: 38px;
    }

    .stories-heading h2 {
        font-size: 35px;
    }

    .stories-heading > p {
        font-size: 14px;

        line-height: 1.7;
    }

    .stories-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .story-card {
        min-height: 320px;

        padding: 30px 25px;
    }

    .story-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .story-text {
        font-size: 16px;

        line-height: 1.75;
    }

    .stories-bottom {
        flex-wrap: wrap;

        gap: 12px;

        text-align: center;
    }

}

/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;
    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, .94),
            rgba(3, 29, 56, .70),
            rgba(3, 29, 56, .25)
        ),
        url("images/home1.png");

    background-size: cover;
    background-position: center;
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    padding: 75px 0;
}

.contact-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.contact-hero h1 {
    max-width: 750px;

    margin: 0 0 20px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(46px, 5vw, 70px);

    line-height: 1.08;
}

.contact-hero h1 span {
    display: block;

    color: var(--light-gold);
}

.contact-hero p {
    max-width: 650px;

    margin: 0 0 25px;

    color: #e5edf5;

    font-size: 17px;

    line-height: 1.75;
}

.contact-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.65);

    font-size: 13px;
}

.contact-breadcrumb a {
    color: var(--light-gold);
}

.contact-breadcrumb strong {
    color: #fff;
}


/* =========================================================
   CONTACT MAIN SECTION
========================================================= */

.contact-section {
    padding: 100px 0;

    background: var(--white);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, .85fr)
        minmax(450px, 1.15fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.section-label {
    display: block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.contact-info h2 {
    margin: 0 0 20px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    line-height: 1.12;
}

.contact-info h2 span {
    color: var(--gold);
}

.contact-intro {
    max-width: 520px;

    margin-bottom: 38px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT INFO ITEM
========================================================= */

.contact-info-item {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;
}

.contact-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(201,154,61,.10);

    color: var(--gold);

    font-size: 18px;
}

.contact-info-label {
    display: block;

    margin-bottom: 5px;

    color: #8993a0;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.contact-info-item a,
.contact-info-item p {
    margin: 0;

    color: var(--navy);

    font-size: 15px;

    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--gold);
}


/* =========================================================
   SOCIAL
========================================================= */

.contact-social {
    margin-top: 35px;

    padding-top: 28px;

    border-top: 1px solid var(--border);
}

.contact-social > span {
    display: block;

    margin-bottom: 14px;

    color: #8993a0;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-social-links {
    display: flex;

    gap: 9px;
}

.contact-social-links a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #e4e7ea;

    border-radius: 4px;

    color: var(--navy);

    font-size: 14px;

    transition: .3s ease;
}

.contact-social-links a:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: #fff;

    transform: translateY(-3px);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding: 42px;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-top: 4px solid var(--gold);

    box-shadow:
        0 15px 45px
        rgba(4,29,58,.07);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header > span {
    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-form-header h3 {
    margin: 8px 0 10px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
}

.contact-form-header p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background: #fff;

    border: 1px solid #dedede;

    border-radius: 3px;

    outline: none;

    color: var(--text);

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.form-group input,
.form-group select {
    height: 50px;
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a3aab2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(201,154,61,.10);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-width: 190px;

    padding: 15px 22px;

    border: 1px solid var(--gold);

    border-radius: 4px;

    background: var(--gold);

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}

.contact-submit span {
    font-size: 19px;

    transition: transform .3s ease;
}

.contact-submit:hover {
    background: var(--navy);

    border-color: var(--navy);

    transform: translateY(-2px);
}

.contact-submit:hover span {
    transform: translateX(4px);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location {
    padding: 90px 0;

    background: var(--light-bg);
}

.location-heading {
    max-width: 650px;

    margin-bottom: 35px;
}

.location-heading h2 {
    margin: 0 0 15px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 44px;
}

.location-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.location-map {
    width: 100%;

    height: 420px;

    overflow: hidden;

    border-radius: 5px;

    border: 1px solid #e3e3e3;

    box-shadow:
        0 12px 35px
        rgba(4,29,58,.08);
}

.location-map iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   FAQ
========================================================= */

.contact-faq {
    padding: 100px 0;

    background: #fff;
}

.faq-heading {
    max-width: 650px;

    margin-bottom: 45px;
}

.faq-heading h2 {
    margin: 0 0 15px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;
}

.faq-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;
}

.faq-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.faq-card {
    padding: 32px;

    border: 1px solid #e8e8e8;

    background: #fff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(4,29,58,.08);
}

.faq-number {
    margin-bottom: 22px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.faq-card h3 {
    margin: 0 0 12px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
}

.faq-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.contact-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            100deg,
            var(--dark-navy),
            var(--navy)
        );
}

.contact-cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.contact-cta-content > div:first-child > span {
    color: var(--light-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-cta h2 {
    margin: 12px 0 0;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;

    line-height: 1.2;
}

.contact-cta h2 strong {
    color: var(--light-gold);
}

.contact-cta-buttons {
    display: flex;

    gap: 12px;

    flex-shrink: 0;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 23px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;
}

.cta-primary {
    background: var(--gold);

    border: 1px solid var(--gold);

    color: #fff;
}

.cta-secondary {
    border: 1px solid rgba(255,255,255,.5);

    color: #fff;
}

.cta-primary:hover {
    background: #fff;

    border-color: #fff;

    color: var(--navy);
}

.cta-secondary:hover {
    background: #fff;

    color: var(--navy);

    border-color: #fff;
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cta-content {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        min-height: 400px;
    }

    .contact-hero-content {
        padding: 60px 0;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero p {
        font-size: 15px;
    }

    .contact-section,
    .contact-location,
    .contact-faq {
        padding: 70px 0;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .location-heading h2,
    .faq-heading h2 {
        font-size: 35px;
    }

    .location-map {
        height: 320px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 55px 0;
    }

    .contact-cta h2 {
        font-size: 30px;
    }

    .contact-cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

}

/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.gallery-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.gallery-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.gallery-eyebrow {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.gallery-heading h2 {
    margin: 0 0 18px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.15;
}

.gallery-heading h2 span {
    color: var(--gold);
}

.gallery-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FILTER BUTTONS
========================================================= */

.gallery-filters {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 40px;
}

.gallery-filter {
    padding: 11px 22px;

    background: #ffffff;

    color: var(--text);

    border: 1px solid #dedede;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.gallery-filter:hover {
    color: var(--navy);
    border-color: var(--gold);
}

.gallery-filter.active {
    color: #ffffff;
    background: var(--gold);
    border-color: var(--gold);
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-item {
    position: relative;

    height: 300px;

    overflow: hidden;

    border-radius: 5px;

    background: #eeeeee;

    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            to top,
            rgba(3, 29, 56, 0.90) 0%,
            rgba(3, 29, 56, 0.45) 45%,
            rgba(3, 29, 56, 0.05) 100%
        );

    opacity: 0;

    transition:
        opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* =========================================================
   OVERLAY CONTENT
========================================================= */

.gallery-overlay-content {
    transform: translateY(15px);

    transition:
        transform 0.35s ease;
}

.gallery-item:hover
.gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content > span {
    display: block;

    margin-bottom: 8px;

    color: var(--light-gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.gallery-overlay-content h3 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    line-height: 1.25;
}


/* =========================================================
   VIEW PHOTO BUTTON
========================================================= */

.gallery-view {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 0;

    background: transparent;

    color: #ffffff;

    border: none;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.gallery-view b {
    color: var(--light-gold);

    font-size: 18px;

    font-weight: 400;

    transition:
        transform 0.25s ease;
}

.gallery-view:hover b {
    transform: translateX(5px);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(3, 18, 34, 0.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   LIGHTBOX CONTENT
========================================================= */

.lightbox-content {
    position: relative;

    width: min(950px, 95vw);

    max-height: 90vh;

    text-align: center;
}

.lightbox-content img {
    display: block;

    width: 100%;

    max-height: 75vh;

    object-fit: contain;

    border-radius: 4px;
}


/* =========================================================
   LIGHTBOX INFO
========================================================= */

.lightbox-info {
    padding-top: 18px;
}

.lightbox-info span {
    color: var(--light-gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.lightbox-info h3 {
    margin: 7px 0 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.gallery-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 50%;

    font-size: 30px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.gallery-close:hover {
    background: #ffffff;
    color: var(--navy);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .gallery-section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-item {
        height: 280px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gallery-section {
        padding: 65px 0;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 34px;
    }

    .gallery-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .gallery-filters {
        gap: 7px;
        margin-bottom: 30px;
    }

    .gallery-filter {
        padding: 9px 14px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item {
        height: 270px;
    }

    /* Always show overlay slightly on mobile */
    .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay-content {
        transform: translateY(0);
    }

    .gallery-overlay-content h3 {
        font-size: 20px;
    }

    .gallery-close {
        top: 15px;
        right: 15px;
    }

}

/* =========================================================
   VOLUNTEER PAGE
========================================================= */

.volunteer-page {
    width: 100%;
    overflow: hidden;
}

.volunteer-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.volunteer-hero {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;

    background:
        url("images/home1.png")
        center / cover no-repeat;
}

.volunteer-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,29,56,.94) 0%,
            rgba(3,29,56,.72) 48%,
            rgba(3,29,56,.25) 100%
        );
}

.volunteer-hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, 92%);
    margin: auto;

    padding: 80px 0;
}

.volunteer-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.volunteer-hero h1 {
    max-width: 750px;

    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(46px, 5vw, 72px);

    line-height: 1.08;
}

.volunteer-hero h1 span {
    display: block;
    color: var(--light-gold);
}

.volunteer-hero p {
    max-width: 620px;

    margin: 0 0 32px;

    color: #e7edf4;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.volunteer-primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-width: 220px;

    padding: 15px 22px;

    background: var(--gold);

    color: #ffffff;

    border: 1px solid var(--gold);
    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.volunteer-primary-btn span {
    font-size: 19px;

    transition: transform .3s ease;
}

.volunteer-primary-btn:hover {
    background: #ffffff;
    color: var(--navy);

    transform: translateY(-2px);
}

.volunteer-primary-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   INTRO
========================================================= */

.volunteer-intro {
    padding: 100px 0;

    background: #ffffff;
}

.volunteer-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 75px;

    align-items: center;
}

.volunteer-intro-image {
    position: relative;
}

.volunteer-intro-image img {
    width: 100%;
    height: 500px;

    display: block;

    object-fit: cover;

    border-radius: 5px;
}

.volunteer-image-badge {
    position: absolute;

    right: -25px;
    bottom: 30px;

    padding: 20px 25px;

    background: var(--navy);

    border-left: 4px solid var(--gold);

    box-shadow:
        0 12px 30px rgba(3,29,56,.18);
}

.volunteer-image-badge strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
    letter-spacing: 2px;
}

.volunteer-image-badge span {
    display: block;

    margin-top: 5px;

    color: var(--light-gold);

    font-size: 10px;
    letter-spacing: 1.5px;
}

.volunteer-section-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.volunteer-intro-content h2,
.volunteer-section-heading h2,
.volunteer-form-info h2,
.volunteer-cta h2 {
    margin: 0 0 20px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.15;
}

.volunteer-intro-content h2 span,
.volunteer-section-heading h2 span,
.volunteer-form-info h2 span,
.volunteer-cta h2 span {
    color: var(--gold);
}

.volunteer-intro-content > p {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   CHECK LIST
========================================================= */

.volunteer-check-list {
    margin-top: 28px;
}

.volunteer-check-list > div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 13px;
}

.volunteer-check-list span {
    width: 23px;
    height: 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--gold);

    background:
        rgba(201,154,61,.12);

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}

.volunteer-check-list p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
}


/* =========================================================
   OPPORTUNITIES
========================================================= */

.volunteer-opportunities {
    padding: 100px 0;

    background: var(--light-bg);
}

.volunteer-section-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}

.volunteer-section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}

.volunteer-opportunity-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.volunteer-opportunity-card {
    position: relative;

    padding: 32px 25px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 5px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.volunteer-opportunity-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(4,29,58,.10);
}

.volunteer-card-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #d9dde2;

    font-size: 12px;
    font-weight: 700;
}

.volunteer-card-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:
        rgba(201,154,61,.10);

    border-radius: 50%;

    font-size: 24px;
}

.volunteer-opportunity-card h3 {
    margin: 0 0 12px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
}

.volunteer-opportunity-card p {
    min-height: 105px;

    margin: 0 0 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.volunteer-opportunity-card a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
}

.volunteer-opportunity-card a span {
    color: var(--gold);

    font-size: 17px;

    transition: transform .25s ease;
}

.volunteer-opportunity-card a:hover span {
    transform: translateX(5px);
}


/* =========================================================
   PROCESS
========================================================= */

.volunteer-process {
    padding: 100px 0;

    background: #ffffff;
}

.volunteer-process-grid {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 25px;
}

.volunteer-process-item {
    text-align: center;
}

.process-number {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    color: var(--gold);

    background:
        rgba(201,154,61,.10);

    border: 1px solid rgba(201,154,61,.30);

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}

.volunteer-process-item h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
}

.volunteer-process-item p {
    max-width: 250px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.process-line {
    width: 70px;
    height: 1px;

    background:
        rgba(201,154,61,.35);
}


/* =========================================================
   FORM SECTION
========================================================= */

.volunteer-form-section {
    padding: 100px 0;

    background: var(--light-bg);
}

.volunteer-form-wrapper {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 60px;

    padding: 55px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 6px;
}

.volunteer-form-info h2 {
    font-size: 45px;
}

.volunteer-form-info > p {
    margin: 0 0 30px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}

.volunteer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}

.volunteer-contact-item > span {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--gold);

    background:
        rgba(201,154,61,.10);

    border-radius: 50%;

    font-size: 14px;
}

.volunteer-contact-item strong {
    display: block;

    margin-bottom: 4px;

    color: var(--navy);

    font-size: 13px;
}

.volunteer-contact-item p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   FORM
========================================================= */

.volunteer-form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}

.volunteer-field {
    margin-bottom: 18px;
}

.volunteer-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;
}

.volunteer-field input,
.volunteer-field select,
.volunteer-field textarea {
    width: 100%;

    padding: 13px 14px;

    color: var(--text);

    background: #ffffff;

    border: 1px solid #dedede;

    border-radius: 3px;

    outline: none;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.volunteer-field textarea {
    resize: vertical;
    min-height: 120px;
}

.volunteer-field input:focus,
.volunteer-field select:focus,
.volunteer-field textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(201,154,61,.10);
}

.volunteer-submit-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-width: 250px;

    padding: 15px 22px;

    color: #ffffff;

    background: var(--gold);

    border: 1px solid var(--gold);

    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}

.volunteer-submit-btn span {
    font-size: 18px;

    transition: transform .25s ease;
}

.volunteer-submit-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.volunteer-submit-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.volunteer-cta {
    position: relative;

    padding: 95px 0;

    background: var(--navy);

    text-align: center;
}

.volunteer-cta .volunteer-section-label {
    color: var(--light-gold);
}

.volunteer-cta h2 {
    color: #ffffff;
}

.volunteer-cta h2 span {
    color: var(--light-gold);
}

.volunteer-cta p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #dbe4ee;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .volunteer-intro-grid {
        gap: 40px;
    }

    .volunteer-opportunity-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .volunteer-process-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .process-line {
        width: 1px;
        height: 35px;

        margin: auto;
    }

    .volunteer-form-wrapper {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .volunteer-hero {
        min-height: 600px;
    }

    .volunteer-hero-content {
        padding: 70px 0;
    }

    .volunteer-hero h1 {
        font-size: 42px;
    }

    .volunteer-hero p {
        font-size: 15px;
    }


    .volunteer-intro,
    .volunteer-opportunities,
    .volunteer-process,
    .volunteer-form-section {
        padding: 70px 0;
    }


    .volunteer-intro-grid {
        grid-template-columns: 1fr;
    }

    .volunteer-intro-image img {
        height: 380px;
    }

    .volunteer-image-badge {
        right: 15px;
        bottom: 20px;
    }


    .volunteer-opportunity-grid {
        grid-template-columns: 1fr;
    }


    .volunteer-form-wrapper {
        padding: 30px 22px;
    }

    .volunteer-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .volunteer-form-info h2 {
        font-size: 36px;
    }


    .volunteer-submit-btn {
        width: 100%;
    }


    .volunteer-cta {
        padding: 70px 0;
    }

}

/* =========================================================
   PARTNER PAGE
========================================================= */

.partner-page {
    width: 100%;
    background: #ffffff;
    color: var(--text);
}

.partner-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.partner-hero {
    position: relative;
    min-height: 470px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.94),
            rgba(3, 29, 56, 0.72),
            rgba(3, 29, 56, 0.35)
        ),
        url("images/home1.png");

    background-size: cover;
    background-position: center;
}

.partner-hero-overlay {
    position: absolute;
    inset: 0;
}

.partner-hero-content {
    position: relative;
    z-index: 2;

    width: min(1180px, 92%);
    margin: auto;

    padding: 80px 0;
}



.partner-eyebrow,
.section-label {
    display: inline-block;

    color: var(--light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.partner-eyebrow {
    margin-bottom: 20px;
}

.partner-hero h1 {
    margin: 0 0 24px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(45px, 5vw, 70px);
    line-height: 1.08;
}

.partner-hero h1 span {
    display: block;
    color: var(--light-gold);
}

.partner-hero p {
    max-width: 650px;

    margin: 0;

    color: #e8eef5;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.partner-intro {
    padding: 100px 0;
    background: #ffffff;
}

.partner-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(300px, 0.8fr);

    gap: 80px;

    align-items: center;
}

.partner-intro-content .section-label {
    margin-bottom: 16px;
}

.partner-intro-content h2,
.partner-heading h2 {
    margin: 0 0 22px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.15;
}

.partner-intro-content h2 span,
.partner-heading h2 span {
    color: var(--gold);
}

.partner-intro-content p {
    max-width: 680px;

    margin: 0 0 18px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   INTRO CARD
========================================================= */

.partner-intro-card {
    position: relative;

    padding: 50px 40px;

    background: #faf8f2;

    border: 1px solid #eee5d3;
    border-top: 4px solid var(--gold);

    text-align: center;

    box-shadow:
        0 18px 45px rgba(4, 29, 58, 0.08);
}

.partner-card-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(201, 154, 61, 0.12);

    border-radius: 50%;

    font-size: 32px;
}

.partner-intro-card h3 {
    margin: 0 0 14px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
}

.partner-intro-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.partner-primary-btn,
.partner-cta-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 18px;

    padding: 15px 23px;

    background: var(--gold);

    color: #ffffff;

    border: 1px solid var(--gold);
    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.partner-primary-btn span,
.partner-cta-btn span {
    font-size: 20px;

    transition: transform 0.3s ease;
}

.partner-primary-btn:hover,
.partner-cta-btn:hover {
    background: var(--navy);
    border-color: var(--navy);

    transform: translateY(-2px);
}

.partner-primary-btn:hover span,
.partner-cta-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   BENEFITS
========================================================= */

.partner-benefits {
    padding: 100px 0;

    background: #f7f8fa;
}

.partner-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}

.partner-heading .section-label {
    margin-bottom: 15px;
}

.partner-heading p {
    margin: 0 auto;

    max-width: 650px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}

.partner-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.partner-benefit-card {
    position: relative;

    padding: 35px 25px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.partner-benefit-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(4, 29, 58, 0.09);
}

.benefit-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #d8d8d8;

    font-size: 12px;
    font-weight: 700;
}

.benefit-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(201, 154, 61, 0.1);

    border-radius: 50%;

    font-size: 24px;
}

.partner-benefit-card h3 {
    margin: 0 0 12px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
}

.partner-benefit-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PARTNERSHIP TYPES
========================================================= */

.partner-types {
    padding: 100px 0;
    background: #ffffff;
}

.partner-type-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.partner-type-card {
    position: relative;

    padding: 40px 32px;

    border: 1px solid #e7e7e7;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.partner-type-card:hover {
    transform: translateY(-5px);

    border-color: #d8c49a;

    box-shadow:
        0 15px 35px rgba(4, 29, 58, 0.08);
}

.partner-type-number {
    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.partner-type-card h3 {
    margin: 18px 0 15px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;
}

.partner-type-card p {
    margin: 0 0 22px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}

.partner-type-card a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 700;
}

.partner-type-card a span {
    color: var(--gold);

    font-size: 18px;

    transition: transform 0.3s ease;
}

.partner-type-card a:hover {
    color: var(--gold);
}

.partner-type-card a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   CTA
========================================================= */

.partner-cta {
    padding: 0 0 100px;

    background: #ffffff;
}

.partner-cta-box {
    padding: 60px 65px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background: var(--dark-navy);
}

.partner-cta-box .section-label {
    margin-bottom: 15px;
}

.partner-cta-box h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;
}

.partner-cta-box h2 span {
    color: var(--light-gold);
}

.partner-cta-box p {
    max-width: 650px;

    margin: 0;

    color: #dbe4ed;

    font-size: 15px;
    line-height: 1.7;
}

.partner-cta-btn {
    flex-shrink: 0;

    margin-top: 0;

    background: var(--gold);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .partner-hero {
        min-height: 430px;
    }

    .partner-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .partner-benefit-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .partner-type-grid {
        grid-template-columns: 1fr;
    }

    .partner-cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 45px 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .partner-hero {
        min-height: 450px;
    }

    .partner-hero-content {
        width: 88%;
    }

    .partner-eyebrow,
    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .partner-hero h1 {
        font-size: 40px;
    }

    .partner-hero p {
        font-size: 15px;
    }

    .partner-intro,
    .partner-benefits,
    .partner-types {
        padding: 70px 0;
    }

    .partner-benefit-grid {
        grid-template-columns: 1fr;
    }

    .partner-intro-card {
        padding: 40px 25px;
    }

    .partner-cta {
        padding-bottom: 70px;
    }

    .partner-cta-box {
        padding: 40px 25px;
    }

    .partner-primary-btn,
    .partner-cta-btn {
        width: 100%;
        justify-content: space-between;
    }

}

/* =========================================================
   SUPPORT PAGE
========================================================= */

.support-page {
    --support-navy: #062a52;
    --support-dark: #031d38;
    --support-gold: #c99a3d;
    --support-light-gold: #e3bd69;
    --support-white: #ffffff;
    --support-bg: #f7f8fa;
    --support-text: #26364a;
    --support-muted: #6b7785;
    --support-border: #e6e9ed;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--support-text);
    background: var(--support-white);
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.support-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.support-hero {
    position: relative;

    min-height: 470px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.98),
            rgba(3, 29, 56, 0.88),
            rgba(6, 42, 82, 0.78)
        );
}


/* Decorative circle */

.support-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -170px;
    top: -180px;

    border: 1px solid
        rgba(227, 189, 105, 0.22);

    border-radius: 50%;
}


.support-hero .support-container {
    position: relative;
    z-index: 2;
}


.support-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--support-light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.support-hero h1 {
    max-width: 760px;

    margin: 0 0 24px;

    color: var(--support-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 76px);

    font-weight: 700;

    line-height: 1.06;

    letter-spacing: -1px;
}


.support-hero h1 span {
    display: block;

    color: var(--support-light-gold);
}


.support-hero p {
    max-width: 680px;

    margin: 0;

    color: #dce5ee;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.support-intro {
    padding: 95px 0;
}


.support-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);

    gap: 80px;

    align-items: center;
}


.support-section-label {
    display: block;

    margin-bottom: 15px;

    color: var(--support-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.support-intro-content h2,
.support-heading h2 {
    margin: 0 0 22px;

    color: var(--support-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.15;
}


.support-intro-content h2 span,
.support-heading h2 span {
    color: var(--support-gold);
}


.support-intro-content p {
    max-width: 700px;

    margin: 0 0 18px;

    color: var(--support-muted);

    font-size: 16px;

    line-height: 1.85;
}


.support-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.support-highlight {
    position: relative;

    padding: 45px 38px;

    background: #faf8f2;

    border-top: 4px solid var(--support-gold);

    box-shadow:
        0 15px 40px
        rgba(4, 29, 58, 0.08);
}


.support-highlight-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 50%;

    background:
        rgba(201, 154, 61, 0.12);

    color: var(--support-gold);

    font-size: 25px;
}


.support-highlight h3 {
    margin: 0 0 15px;

    color: var(--support-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    line-height: 1.3;
}


.support-highlight h3 span {
    color: var(--support-gold);
}


.support-highlight p {
    margin: 0;

    color: var(--support-muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   WAYS TO SUPPORT
========================================================= */

.support-ways {
    padding: 95px 0;

    background: var(--support-bg);

    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
}


.support-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.support-heading p {
    margin: 0;

    color: var(--support-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   SUPPORT CARDS
========================================================= */

.support-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


.support-card {
    position: relative;

    min-height: 390px;

    padding: 38px 32px;

    background: var(--support-white);

    border: 1px solid var(--support-border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.support-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(201, 154, 61, 0.45);

    box-shadow:
        0 18px 40px
        rgba(4, 29, 58, 0.10);
}


.support-card-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: #dfe3e8;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-weight: 700;
}


.support-card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border-radius: 50%;

    background:
        rgba(201, 154, 61, 0.10);

    color: var(--support-gold);

    font-size: 23px;

    font-weight: 700;
}


.support-card h3 {
    margin: 0 0 15px;

    color: var(--support-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
}


.support-card p {
    margin: 0 0 25px;

    color: var(--support-muted);

    font-size: 14px;

    line-height: 1.8;
}


.support-card-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--support-navy);

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.25s ease;
}


.support-card-link span {
    color: var(--support-gold);

    font-size: 19px;

    transition:
        transform 0.25s ease;
}


.support-card-link:hover {
    color: var(--support-gold);
}


.support-card-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   DONATION CTA
========================================================= */

.support-cta {
    padding: 90px 0;
}


.support-cta-box {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 60px 65px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--support-dark),
            var(--support-navy)
        );

    border-radius: 5px;
}


.support-cta-box::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -130px;

    border: 1px solid
        rgba(227, 189, 105, 0.18);

    border-radius: 50%;
}


.support-cta-content {
    position: relative;
    z-index: 2;

    max-width: 700px;
}


.support-cta-content .support-section-label {
    color: var(--support-light-gold);
}


.support-cta-content h2 {
    margin: 0 0 20px;

    color: var(--support-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;
}


.support-cta-content h2 span {
    display: block;

    color: var(--support-light-gold);
}


.support-cta-content p {
    max-width: 650px;

    margin: 0;

    color: #dce5ee;

    font-size: 15px;

    line-height: 1.8;
}


.support-cta-action {
    position: relative;
    z-index: 2;

    min-width: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 13px;
}


.support-donate-btn {
    width: 190px;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    padding: 17px 22px;

    background: var(--support-gold);

    color: var(--support-white);

    border: 1px solid var(--support-gold);

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}


.support-donate-btn span {
    font-size: 20px;

    transition:
        transform 0.25s ease;
}


.support-donate-btn:hover {
    background: var(--support-white);

    color: var(--support-navy);

    transform: translateY(-3px);
}


.support-donate-btn:hover span {
    transform: translateX(5px);
}


.support-cta-action small {
    color: #aebdcb;

    font-size: 11px;
}


/* =========================================================
   TRUST SECTION
========================================================= */

.support-trust {
    padding: 0 0 90px;
}


.support-trust-content {
    display: flex;

    align-items: center;

    gap: 22px;

    max-width: 850px;

    margin: 0 auto;

    padding: 28px 32px;

    background: #faf8f2;

    border-left: 3px solid var(--support-gold);
}


.support-trust-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--support-gold);

    color: var(--support-white);

    font-size: 18px;

    font-weight: 700;
}


.support-trust-content h3 {
    margin: 0 0 5px;

    color: var(--support-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;
}


.support-trust-content p {
    margin: 0;

    color: var(--support-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .support-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .support-cards {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .support-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 50px 40px;
    }


    .support-cta-action {
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .support-hero {
        min-height: 430px;
    }


    .support-eyebrow {
        font-size: 11px;

        letter-spacing: 2px;
    }


    .support-hero h1 {
        font-size: 43px;

        letter-spacing: -0.5px;
    }


    .support-hero p {
        font-size: 15px;

        line-height: 1.7;
    }


    .support-intro,
    .support-ways {
        padding: 70px 0;
    }


    .support-intro-content h2,
    .support-heading h2 {
        font-size: 36px;
    }


    .support-highlight {
        padding: 35px 28px;
    }


    .support-cards {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .support-card {
        min-height: auto;

        padding: 32px 27px;
    }


    .support-cta {
        padding: 65px 0;
    }


    .support-cta-box {
        padding: 40px 28px;

        gap: 30px;
    }


    .support-cta-content h2 {
        font-size: 36px;
    }


    .support-donate-btn {
        width: 180px;
    }


    .support-trust {
        padding-bottom: 65px;
    }


    .support-trust-content {
        align-items: flex-start;

        padding: 24px 20px;

        gap: 15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .support-hero h1 {
        font-size: 38px;
    }


    .support-intro-content h2,
    .support-heading h2,
    .support-cta-content h2 {
        font-size: 32px;
    }


    .support-card {
        padding: 28px 23px;
    }

}

/* =========================================================
   AK FOUNDATION — SUPPORT SECTION
========================================================= */

.ak-support {
    position: relative;

    padding: 100px 0 65px;

    background: #f7f8fa;

    overflow: hidden;

    color: #26364a;
}


/* =========================================================
   CONTAINER
========================================================= */

.ak-support-container {
    width: min(1180px, 92%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr);

    gap: 80px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.ak-support-content {
    max-width: 680px;
}


.ak-support-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #c99a3d;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.ak-support-content h1 {
    margin: 0 0 25px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(45px, 5vw, 67px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;
}


.ak-support-content h1 span {
    display: block;

    color: #c99a3d;
}


.ak-support-intro {
    max-width: 650px;

    margin: 0 0 18px;

    color: #3e4c5d;

    font-size: 17px;

    font-weight: 500;

    line-height: 1.8;
}


.ak-support-description {
    max-width: 650px;

    margin: 0;

    color: #6b7785;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   SUPPORT POINTS
========================================================= */

.ak-support-points {
    margin-top: 38px;

    display: flex;

    flex-direction: column;

    gap: 22px;
}


.ak-support-point {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding-bottom: 21px;

    border-bottom:
        1px solid #e4e7eb;
}


.ak-support-point:last-child {
    padding-bottom: 0;

    border-bottom: none;
}


.ak-point-number {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(201, 154, 61, 0.10);

    color: #c99a3d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;

    font-weight: 700;
}


.ak-point-content h3 {
    margin: 0 0 5px;

    color: #062a52;

    font-size: 16px;

    font-weight: 700;
}


.ak-point-content p {
    margin: 0;

    color: #6b7785;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   DONATION CARD
========================================================= */

.ak-donation-card {
    position: relative;

    padding: 42px;

    background: #ffffff;

    border: 1px solid #e5e8ec;

    border-top:
        4px solid #c99a3d;

    box-shadow:
        0 20px 50px
        rgba(4, 29, 58, 0.10);
}


.ak-donation-header {
    margin-bottom: 28px;
}


.ak-donation-label {
    display: block;

    margin-bottom: 12px;

    color: #c99a3d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.ak-donation-header h2 {
    margin: 0 0 12px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 35px;

    line-height: 1.2;
}


.ak-donation-header h2 span {
    color: #c99a3d;
}


.ak-donation-header p {
    margin: 0;

    color: #6b7785;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   DONATION OPTIONS
========================================================= */

.ak-donation-options {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 9px;

    margin-bottom: 25px;
}


.ak-donation-option {
    min-height: 48px;

    padding: 10px 5px;

    background: #ffffff;

    color: #062a52;

    border: 1px solid #dfe3e8;

    border-radius: 3px;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.ak-donation-option:hover {
    border-color: #c99a3d;

    color: #c99a3d;
}


.ak-donation-option.ak-donation-active {
    background: #c99a3d;

    border-color: #c99a3d;

    color: #ffffff;
}


/* =========================================================
   CUSTOM AMOUNT
========================================================= */

.ak-custom-amount {
    margin-bottom: 22px;
}


.ak-custom-amount label {
    display: block;

    margin-bottom: 8px;

    color: #26364a;

    font-size: 12px;

    font-weight: 600;
}


.ak-amount-field {
    height: 52px;

    display: flex;

    align-items: center;

    border: 1px solid #dfe3e8;

    border-radius: 3px;

    background: #ffffff;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.ak-amount-field:focus-within {
    border-color: #c99a3d;

    box-shadow:
        0 0 0 3px
        rgba(201, 154, 61, 0.10);
}


.ak-amount-field > span {
    padding-left: 17px;

    color: #c99a3d;

    font-size: 18px;

    font-weight: 700;
}


.ak-amount-field input {
    width: 100%;

    height: 100%;

    padding: 0 15px;

    outline: none;

    border: none;

    background: transparent;

    color: #26364a;

    font-family: inherit;

    font-size: 14px;
}


.ak-amount-field input::placeholder {
    color: #a3abb5;
}


/* Remove number arrows */

.ak-amount-field input::-webkit-outer-spin-button,
.ak-amount-field input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}


.ak-amount-field input[type="number"] {
    -moz-appearance: textfield;
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.ak-support-donate {
    width: 100%;

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 21px;

    background: #c99a3d;

    color: #ffffff;

    border: 1px solid #c99a3d;

    border-radius: 3px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.ak-support-donate:hover {
    background: #062a52;

    border-color: #062a52;

    color: #ffffff;

    transform: translateY(-2px);
}


.ak-donate-arrow {
    font-size: 21px;

    transition:
        transform 0.25s ease;
}


.ak-support-donate:hover .ak-donate-arrow {
    transform: translateX(5px);
}


/* =========================================================
   SECURE NOTE
========================================================= */

.ak-secure-note {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 20px;

    padding-top: 18px;

    border-top:
        1px solid #edf0f2;
}


.ak-secure-icon {
    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(201, 154, 61, 0.12);

    color: #c99a3d;

    font-size: 12px;

    font-weight: 700;
}


.ak-secure-note p {
    margin: 0;

    color: #7a8591;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.ak-support-bottom {
    width: min(1000px, 88%);

    margin: 75px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;
}


.ak-bottom-line {
    height: 1px;

    flex: 1;

    max-width: 180px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d9dde2
        );
}


.ak-bottom-line:last-child {
    background:
        linear-gradient(
            90deg,
            #d9dde2,
            transparent
        );
}


.ak-support-bottom p {
    margin: 0;

    color: #7a8591;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-style: italic;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .ak-support-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .ak-support-content {
        max-width: 800px;
    }


    .ak-donation-card {
        width: min(600px, 100%);

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ak-support {
        padding: 70px 0 50px;
    }


    .ak-support-container {
        width: 90%;

        gap: 45px;
    }


    .ak-support-label {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .ak-support-content h1 {
        font-size: 42px;

        line-height: 1.08;
    }


    .ak-support-intro {
        font-size: 15px;

        line-height: 1.75;
    }


    .ak-support-description {
        font-size: 14px;
    }


    .ak-support-points {
        margin-top: 30px;

        gap: 18px;
    }


    .ak-support-point {
        gap: 13px;
    }


    .ak-point-number {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }


    .ak-point-content h3 {
        font-size: 15px;
    }


    .ak-point-content p {
        font-size: 12px;
    }


    .ak-donation-card {
        padding: 30px 22px;
    }


    .ak-donation-header h2 {
        font-size: 31px;
    }


    .ak-donation-options {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }


    .ak-donation-option {
        min-height: 48px;
    }


    .ak-support-bottom {
        width: 90%;

        margin-top: 55px;

        gap: 12px;
    }


    .ak-bottom-line {
        display: none;
    }


    .ak-support-bottom p {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .ak-support-content h1 {
        font-size: 37px;
    }


    .ak-donation-card {
        padding: 27px 18px;
    }


    .ak-donation-header h2 {
        font-size: 28px;
    }

}

/* =========================================================
   AK FOUNDATION
   OUR IMPACT PAGE
========================================================= */

.impact-page {

    width: 100%;

    color: #26364a;

    background: #ffffff;

}


.impact-container {

    width: min(1180px, 92%);

    margin: 0 auto;

}


/* =========================================================
   IMPACT HERO
========================================================= */

.impact-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.94),
            rgba(3, 29, 56, 0.70),
            rgba(3, 29, 56, 0.25)
        ),
        url("images/youth7.png");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}





.impact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 780px;

    padding: 90px 0;

}


.impact-eyebrow {

    display: inline-block;

    margin-bottom: 20px;

    color: #e3bd69;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}


.impact-hero h1 {

    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(44px, 5vw, 70px);

    line-height: 1.08;

    letter-spacing: -1px;

}


.impact-hero h1 span {

    display: block;

    color: #e3bd69;

}


.impact-hero p {

    max-width: 650px;

    margin: 0;

    color: #dce6f2;

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   IMPACT INTRODUCTION
========================================================= */

.impact-introduction {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}


/* CONTAINER */

.impact-introduction .impact-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* GRID */

.impact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 80px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.impact-intro-content {
    position: relative;
    max-width: 570px;
}


/* NUMBER */

.impact-section-number {
    display: block;

    margin-bottom: 10px;

    color: #c99a3d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* SMALL LABEL */

.impact-intro-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #c99a3d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* HEADING */

.impact-intro-content h2 {
    margin: 0 0 25px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 4vw, 58px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;
}


/* GOLD HEADING */

.impact-intro-content h2 span {
    display: block;

    color: #c99a3d;
}


/* GOLD LINE */

.impact-intro-line {
    width: 65px;
    height: 3px;

    margin-bottom: 28px;

    background: #c99a3d;
}


/* PARAGRAPHS */

.impact-intro-content p {
    max-width: 560px;

    margin: 0 0 18px;

    color: #647184;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.8;
}


/* FIRST PARAGRAPH */

.impact-intro-content .impact-intro-lead {
    color: #35465a;

    font-size: 17px;
    font-weight: 500;
}


/* =========================================================
   BUTTON
========================================================= */

.impact-intro-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    margin-top: 18px;

    padding: 15px 22px;

    background: #c99a3d;

    color: #ffffff;

    border: 1px solid #c99a3d;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.impact-intro-btn span {
    font-size: 19px;

    transition:
        transform 0.3s ease;
}


.impact-intro-btn:hover {
    background: #062a52;

    border-color: #062a52;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(6, 42, 82, 0.16);
}


.impact-intro-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.impact-intro-image {
    position: relative;

    width: 100%;
}


/* IMAGE FRAME */

.impact-image-frame {
    position: relative;

    width: 100%;

    min-height: 450px;

    overflow: hidden;

    border-radius: 6px;

    background: #062a52;

    box-shadow:
        0 20px 50px
        rgba(6, 42, 82, 0.15);
}


/* IMAGE */

.impact-image-frame img {
    display: block;

    width: 100%;
    height: 450px;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.impact-image-frame:hover img {
    transform: scale(1.03);
}


/* IMAGE OVERLAY */

.impact-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(6, 42, 82, 0.02) 35%,
            rgba(6, 42, 82, 0.62) 100%
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.impact-image-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    min-width: 145px;

    padding: 18px 20px;

    background: rgba(255, 255, 255, 0.96);

    border-left: 4px solid #c99a3d;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.15);
}


.impact-image-badge strong {
    display: block;

    margin-bottom: 3px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;

    line-height: 1;
}


.impact-image-badge span {
    color: #687586;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   DECORATIVE GOLD ELEMENT
========================================================= */

.impact-intro-image::before {
    content: "";

    position: absolute;

    top: -18px;
    right: -18px;

    width: 100px;
    height: 100px;

    border-top: 3px solid #c99a3d;
    border-right: 3px solid #c99a3d;

    z-index: 2;

    pointer-events: none;
}


.impact-intro-image::after {
    content: "";

    position: absolute;

    left: -18px;
    bottom: -18px;

    width: 90px;
    height: 90px;

    border-left: 3px solid #c99a3d;
    border-bottom: 3px solid #c99a3d;

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .impact-introduction {
        padding: 80px 0;
    }


    .impact-intro-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .impact-intro-content {
        max-width: 700px;
    }


    .impact-intro-image {
        max-width: 700px;

        margin: auto;
    }


    .impact-image-frame {
        min-height: 420px;
    }


    .impact-image-frame img {
        height: 420px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .impact-introduction {
        padding: 65px 0;
    }


    .impact-intro-grid {
        gap: 40px;
    }


    .impact-intro-content h2 {
        font-size: 40px;

        line-height: 1.1;
    }


    .impact-intro-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .impact-intro-content .impact-intro-lead {
        font-size: 15px;
    }


    .impact-image-frame {
        min-height: 330px;

        border-radius: 5px;
    }


    .impact-image-frame img {
        height: 330px;
    }


    .impact-image-badge {
        right: 15px;
        bottom: 15px;

        min-width: 125px;

        padding: 14px 16px;
    }


    .impact-image-badge strong {
        font-size: 25px;
    }


    .impact-image-badge span {
        font-size: 9px;
    }


    .impact-intro-image::before {
        top: -10px;
        right: -10px;

        width: 60px;
        height: 60px;
    }


    .impact-intro-image::after {
        left: -10px;
        bottom: -10px;

        width: 55px;
        height: 55px;
    }


    .impact-intro-btn {
        width: 100%;

        justify-content: space-between;
    }

}


/* =========================================================
   SECTION HEADING
========================================================= */

.impact-section-heading {

    max-width: 650px;

    margin-bottom: 55px;

}


.impact-section-heading > span {

    display: block;

    margin-bottom: 12px;

    color: #c99a3d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.impact-section-heading h2 {

    margin: 0;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    line-height: 1.15;

}


.impact-section-heading h2 strong {

    color: #c99a3d;

    font-weight: 700;

}


/* =========================================================
   IMPACT AREAS
========================================================= */

.impact-areas {

    padding: 100px 0;

    background: #fcfcfc;

}


/* =========================================================
   IMPACT CARDS
========================================================= */

.impact-card-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;

}


.impact-card {

    padding: 34px;

    background: #ffffff;

    border:
        1px solid #e7eaee;

    border-radius: 5px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.impact-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(201,154,61,0.45);

    box-shadow:
        0 18px 40px
        rgba(4,29,58,0.09);

}


.impact-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}


.impact-card-number {

    color: #c99a3d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.impact-card-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(201,154,61,0.09);

    border-radius: 50%;

    color: #c99a3d;

    font-size: 18px;

}


.impact-card h3 {

    margin: 0 0 15px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.2;

}


.impact-card h3 span {

    display: block;

    color: #c99a3d;

}


.impact-card > p {

    margin: 0 0 25px;

    color: #727e8c;

    font-size: 14px;

    line-height: 1.75;

}


.impact-result {

    padding-top: 20px;

    border-top:
        1px solid #e8ebee;

}


.impact-result span {

    display: block;

    margin-bottom: 8px;

    color: #c99a3d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.impact-result p {

    margin: 0;

    color: #405269;

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   TABLE SECTION
========================================================= */

.impact-table-section {

    padding: 110px 0;

    background: #ffffff;

}


.impact-table-wrapper {

    width: 100%;

    overflow-x: auto;

    border:
        1px solid #dfe3e7;

}


.impact-table {

    width: 100%;

    min-width: 750px;

    border-collapse: collapse;

    background: #ffffff;

}


.impact-table th {

    padding: 18px 20px;

    background: #062a52;

    color: #ffffff;

    border-right:
        1px solid
        rgba(255,255,255,0.15);

    font-family:
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-align: left;

    line-height: 1.4;

}


.impact-table th:last-child {

    border-right: none;

}


.impact-table td {

    padding: 18px 20px;

    border-right:
        1px solid #dfe3e7;

    border-bottom:
        1px solid #dfe3e7;

    color: #566476;

    font-size: 13px;

    line-height: 1.65;

    vertical-align: top;

}


.impact-table tr:last-child td {

    border-bottom: none;

}


.impact-table td:last-child {

    border-right: none;

}


.impact-table td strong {

    color: #062a52;

    font-size: 14px;

}


.impact-table tbody tr {

    transition:
        background 0.2s ease;

}


.impact-table tbody tr:hover {

    background: #faf8f2;

}


/* =========================================================
   FINAL CTA
========================================================= */

.impact-final-cta {

    padding: 95px 0;

    background:
        linear-gradient(
            110deg,
            #031d38,
            #082d55
        );

}


.impact-cta-content {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}


.impact-cta-content > span {

    display: block;

    margin-bottom: 15px;

    color: #e3bd69;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.impact-cta-content h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 46px;

    line-height: 1.15;

}


.impact-cta-content h2 strong {

    display: block;

    color: #e3bd69;

}


.impact-cta-content p {

    max-width: 650px;

    margin: 0 auto 32px;

    color: #d7e1ec;

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   CTA BUTTONS
========================================================= */

.impact-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

}


.impact-primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-width: 210px;

    padding: 16px 22px;

    background: #c99a3d;

    border:
        1px solid #c99a3d;

    border-radius: 4px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;

}


.impact-primary-btn span {

    font-size: 18px;

    transition:
        transform 0.3s ease;

}


.impact-primary-btn:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #062a52;

    transform: translateY(-2px);

}


.impact-primary-btn:hover span {

    transform:
        translateX(4px);

}


.impact-secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 23px;

    border:
        1px solid
        rgba(255,255,255,0.55);

    border-radius: 4px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    transition: 0.3s ease;

}


.impact-secondary-btn:hover {

    background: #ffffff;

    border-color: #ffffff;

    color: #062a52;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    


    .impact-card-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .impact-hero {

        min-height: 430px;

    }


    .impact-hero-content {

        padding: 75px 0;

    }


    .impact-hero h1 {

        font-size: 40px;

    }


    .impact-hero p {

        font-size: 15px;

    }




    .impact-section-heading {

        margin-bottom: 35px;

    }


    .impact-section-heading h2 {

        font-size: 35px;

    }


    .impact-card {

        padding: 27px 22px;

    }


    .impact-card h3 {

        font-size: 23px;

    }


    .impact-table-section {

        overflow: hidden;

    }


    .impact-table-wrapper {

        border-radius: 3px;

    }


    .impact-final-cta {

        padding: 75px 0;

    }


    .impact-cta-content h2 {

        font-size: 37px;

    }


    .impact-cta-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .impact-primary-btn,
    .impact-secondary-btn {

        width: 100%;

        justify-content: center;

    }

}

/* =========================================
   IMPACT NUMBERS / KEY STATISTICS
========================================= */

.impact-numbers {

    position: relative;

    padding: 100px 0;

    background: #f7f8fa;

    border-top: 1px solid #e8e8e8;
}


/* =========================================
   HEADING
========================================= */

.impact-numbers-heading {

    max-width: 720px;

    margin-bottom: 55px;
}


.impact-numbers-label {

    display: inline-block;

    margin-bottom: 14px;

    color: #c99a3d;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.impact-numbers-heading h2 {

    margin: 0 0 18px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 700;
}


.impact-numbers-heading h2 span {

    display: block;

    color: #c99a3d;
}


.impact-numbers-heading p {

    max-width: 650px;

    margin: 0;

    color: #6b7785;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   STAT GRID
========================================= */

.impact-stat-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

    background: #ffffff;

    border: 1px solid #e4e7eb;

    border-radius: 6px;

    overflow: hidden;

    box-shadow:
        0 12px 35px
        rgba(4, 29, 58, 0.06);
}


/* =========================================
   STAT ITEM
========================================= */

.impact-stat {

    position: relative;

    padding: 38px 30px 35px;

    background: #ffffff;

    border-right: 1px solid #e4e7eb;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.impact-stat:last-child {

    border-right: none;
}


.impact-stat:hover {

    background: #faf8f2;

    transform: translateY(-4px);
}


/* =========================================
   NUMBER
========================================= */

.impact-stat-number {

    margin-bottom: 12px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 48px;

    font-weight: 700;

    line-height: 1;
}


.impact-stat-number span {

    color: #c99a3d;

    font-size: 32px;

    margin-left: 2px;
}


/* =========================================
   STAT TITLE
========================================= */

.impact-stat h3 {

    margin: 0 0 12px;

    color: #26364a;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================
   STAT DESCRIPTION
========================================= */

.impact-stat p {

    margin: 0;

    color: #6b7785;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   GOLD TOP ACCENT
========================================= */

.impact-stat::before {

    content: "";

    position: absolute;

    top: 0;

    left: 30px;

    width: 35px;

    height: 3px;

    background: #c99a3d;

    transition:
        width 0.3s ease;
}


.impact-stat:hover::before {

    width: 65px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .impact-numbers {

        padding: 80px 0;
    }


    .impact-numbers-heading h2 {

        font-size: 40px;
    }


    .impact-stat-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .impact-stat:nth-child(2) {

        border-right: none;
    }


    .impact-stat:nth-child(-n+2) {

        border-bottom: 1px solid #e4e7eb;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .impact-numbers {

        padding: 65px 0;
    }


    .impact-numbers-heading {

        margin-bottom: 35px;
    }


    .impact-numbers-heading h2 {

        font-size: 34px;
    }


    .impact-numbers-heading p {

        font-size: 14px;

        line-height: 1.7;
    }


    .impact-stat-grid {

        grid-template-columns: 1fr;
    }


    .impact-stat {

        padding: 32px 25px;

        border-right: none;

        border-bottom: 1px solid #e4e7eb;
    }


    .impact-stat:last-child {

        border-bottom: none;
    }


    .impact-stat:nth-child(2) {

        border-bottom: 1px solid #e4e7eb;
    }


    .impact-stat-number {

        font-size: 42px;
    }

}

/* =========================================================
   VISION & MISSION PAGE
========================================================= */

.vm-page {
    width: 100%;
    background: #ffffff;
    color: var(--text);
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.vm-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.vm-hero {
    position: relative;

    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.92),
            rgba(6, 42, 82, 0.72),
            rgba(6, 42, 82, 0.35)
        ),
        url("images/slide2.png") no-repeat center center;

    background-size: cover;
    background-position: center center;

    overflow: hidden;
}



.vm-hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: 70px 0;
}


.vm-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}


.vm-hero h1 {
    margin: 0 0 22px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(50px, 6vw, 76px);

    line-height: 1.05;

    letter-spacing: -1px;
}


.vm-hero h1 span {
    display: block;

    color: var(--light-gold);
}


.vm-hero p {
    max-width: 650px;

    margin: 0;

    color: #dce6f2;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   VISION SECTION
========================================================= */

.vm-vision {
    padding: 105px 0;

    background: #ffffff;
}


.vm-vision-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.35fr;

    gap: 90px;

    align-items: center;
}


/* LEFT */

.vm-section-heading {
    position: relative;
}


.vm-number {
    display: block;

    margin-bottom: 13px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.vm-label {
    display: block;

    margin-bottom: 17px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.vm-section-heading h2,
.vm-mission-heading h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.1;
}


.vm-section-heading h2 span,
.vm-mission-heading h2 span {
    display: block;

    color: var(--gold);
}


/* RIGHT */

.vm-vision-content {
    position: relative;

    padding: 45px;

    background: #f8f9fb;

    border-left:
        4px solid var(--gold);

    border-radius: 4px;
}


.vm-icon-box {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    color: var(--gold);

    background:
        rgba(201, 154, 61, 0.10);

    border-radius: 50%;

    font-size: 20px;
}


.vm-large-text {
    margin: 0;

    color: #445264;

    font-size: 19px;

    line-height: 1.9;

    font-weight: 400;
}


/* =========================================================
   MISSION SECTION
========================================================= */

.vm-mission {
    padding: 105px 0;

    background: #f7f8fa;

    border-top:
        1px solid #edf0f3;
}


.vm-mission-heading {
    display: flex;

    align-items: flex-start;

    gap: 28px;

    margin-bottom: 55px;
}


.vm-mission-heading .vm-number {
    margin-top: 6px;

    min-width: 30px;
}


.vm-mission-heading h2 {
    font-size: clamp(36px, 4vw, 50px);
}


/* =========================================================
   MISSION CARDS
========================================================= */

.vm-mission-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;
}


.vm-mission-card {
    position: relative;

    min-height: 300px;

    padding: 34px;

    background: #ffffff;

    border:
        1px solid #e7e9ed;

    border-radius: 5px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.vm-mission-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(201, 154, 61, 0.45);

    box-shadow:
        0 15px 35px
        rgba(4, 29, 58, 0.09);
}


/* CARD TOP */

.vm-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 35px;
}


.vm-card-number {
    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.vm-card-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    background:
        rgba(201, 154, 61, 0.09);

    border-radius: 50%;

    font-size: 18px;
}


/* CARD CONTENT */

.vm-mission-card h3 {
    margin: 0 0 15px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.2;
}


.vm-mission-card p {
    margin: 0;

    color: #657181;

    font-size: 15px;

    line-height: 1.8;
}


/* GOLD TOP LINE */

.vm-mission-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 34px;

    width: 45px;
    height: 3px;

    background: var(--gold);
}


/* =========================================================
   CLOSING
========================================================= */

.vm-closing {
    padding: 45px 0;

    background: #ffffff;
}


.vm-closing-inner {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


.vm-closing-line {
    width: 70px;
    height: 1px;

    background:
        rgba(201, 154, 61, 0.55);
}


.vm-closing p {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    font-style: italic;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .vm-hero {
        min-height: 390px;
    }


    .vm-vision {
        padding: 80px 0;
    }


    .vm-vision-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .vm-vision-content {
        padding: 35px;
    }


    .vm-mission {
        padding: 80px 0;
    }


    .vm-mission-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vm-container {
        width: 90%;
    }


    .vm-hero-content {
        padding: 65px 0;
    }


    .vm-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }


    .vm-hero h1 {
        font-size: 43px;
    }


    .vm-hero p {
        font-size: 15px;
        line-height: 1.7;
    }


    .vm-vision {
        padding: 65px 0;
    }


    .vm-section-heading h2,
    .vm-mission-heading h2 {
        font-size: 36px;
    }


    .vm-vision-content {
        padding: 28px;

        border-left-width: 3px;
    }


    .vm-large-text {
        font-size: 16px;

        line-height: 1.8;
    }


    .vm-mission {
        padding: 65px 0;
    }


    .vm-mission-heading {
        gap: 15px;

        margin-bottom: 40px;
    }


    .vm-mission-heading .vm-number {
        min-width: 25px;
    }


    .vm-mission-card {
        min-height: auto;

        padding: 28px;
    }


    .vm-card-top {
        margin-bottom: 28px;
    }


    .vm-mission-card h3 {
        font-size: 22px;
    }


    .vm-mission-card p {
        font-size: 14px;

        line-height: 1.75;
    }


    .vm-closing {
        padding: 35px 0;
    }


    .vm-closing-line {
        width: 35px;
    }


    .vm-closing p {
        font-size: 15px;
    }

}

/* =========================================================
   OUR STORY PAGE
========================================================= */

.story-page {
    width: 100%;
    background: #ffffff;
    color: var(--text);
}


/* =========================================================
   CONTAINER
========================================================= */

.story-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.story-hero {
    position: relative;

    width: 100%;
    min-height: 440px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, .94),
            rgba(3, 29, 56, .70),
            rgba(3, 29, 56, .25)
        ),
        url("images/slide2.png") no-repeat center center;

    background-size: cover;
}





.story-hero-content {
    position: relative;

    z-index: 2;

    max-width: 780px;

    padding: 75px 0;
}


.story-eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}


.story-hero h1 {
    margin: 0 0 24px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 1.05;

    letter-spacing: -1px;
}


.story-hero h1 span {
    display: block;

    color: var(--light-gold);
}


.story-hero p {
    max-width: 650px;

    margin: 0;

    color: #dce6f2;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   FOUNDING STORY
========================================================= */

.story-intro {
    padding: 105px 0;

    background: #ffffff;
}


.story-intro-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.4fr;

    gap: 90px;

    align-items: start;
}


/* =========================================================
   COMMON HEADING
========================================================= */

.story-number {
    display: block;

    margin-bottom: 12px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}


.story-label {
    display: block;

    margin-bottom: 17px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.story-heading h2,
.story-section-heading h2,
.story-growth-number h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(36px, 4vw, 52px);

    line-height: 1.1;
}


.story-heading h2 span,
.story-section-heading h2 span,
.story-growth-number h2 span {
    display: block;

    color: var(--gold);
}


/* =========================================================
   STORY CONTENT
========================================================= */

.story-content {
    padding-top: 5px;
}


.story-content p,
.story-evolution-content p,
.story-growth-content p {
    margin: 0 0 24px;

    color: #5f6c7c;

    font-size: 16px;

    line-height: 1.9;
}


.story-content p:last-child,
.story-evolution-content p:last-child,
.story-growth-content p:last-child {
    margin-bottom: 0;
}


.story-lead {
    color: #344456 !important;

    font-size: 20px !important;

    line-height: 1.85 !important;
}


/* =========================================================
   EVOLUTION
========================================================= */

.story-evolution {
    padding: 105px 0;

    background: #f7f8fa;

    border-top:
        1px solid #edf0f3;

    border-bottom:
        1px solid #edf0f3;
}


.story-section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}


.story-evolution-grid {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    gap: 60px;

    align-items: stretch;
}


.story-evolution-content {
    padding: 40px;

    background: #ffffff;

    border-left:
        4px solid var(--gold);

    border-radius: 4px;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.story-highlight {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 40px;

    background: var(--navy);

    border-radius: 4px;

    box-shadow:
        0 15px 35px
        rgba(4, 29, 58, 0.10);
}


.story-highlight-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: var(--gold);

    background:
        rgba(201, 154, 61, 0.12);

    border-radius: 50%;

    font-size: 19px;
}


.story-highlight-label {
    margin-bottom: 15px;

    color: var(--light-gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.story-highlight h3 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    line-height: 1.45;
}


/* =========================================================
   GROWTH
========================================================= */

.story-growth {
    padding: 105px 0;

    background: #ffffff;
}


.story-growth-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}


.story-growth-content {
    padding-top: 4px;
}


/* =========================================================
   VALUES
========================================================= */

.story-values {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 75px;

    padding-top: 45px;

    border-top:
        1px solid #e5e8ec;
}


.story-value {
    padding: 30px;

    background: #f8f9fb;

    border:
        1px solid #edf0f3;

    border-radius: 4px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.story-value:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(4, 29, 58, 0.08);
}


.story-value > span {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.story-value h3 {
    margin: 0 0 10px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;
}


.story-value p {
    margin: 0;

    color: #687586;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CLOSING
========================================================= */

.story-closing {
    padding: 48px 0;

    background: #ffffff;
}


.story-closing-inner {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}


.story-line {
    width: 70px;
    height: 1px;

    background:
        rgba(201, 154, 61, 0.55);
}


.story-closing p {
    max-width: 650px;

    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;

    line-height: 1.6;

    font-style: italic;

    text-align: center;
}


.story-closing strong {
    color: var(--gold);

    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .story-hero {
        min-height: 400px;
    }


    .story-intro,
    .story-evolution,
    .story-growth {
        padding: 80px 0;
    }


    .story-intro-grid,
    .story-growth-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .story-evolution-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .story-values {
        grid-template-columns: 1fr;

        margin-top: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .story-container {
        width: 90%;
    }


    .story-hero-content {
        padding: 65px 0;
    }


    .story-eyebrow {
        font-size: 11px;

        letter-spacing: 2px;
    }


    .story-hero h1 {
        font-size: 43px;
    }


    .story-hero p {
        font-size: 15px;

        line-height: 1.7;
    }


    .story-intro,
    .story-evolution,
    .story-growth {
        padding: 65px 0;
    }


    .story-heading h2,
    .story-section-heading h2,
    .story-growth-number h2 {
        font-size: 36px;
    }


    .story-lead {
        font-size: 17px !important;

        line-height: 1.8 !important;
    }


    .story-content p,
    .story-evolution-content p,
    .story-growth-content p {
        font-size: 14px;

        line-height: 1.8;
    }


    .story-evolution-content,
    .story-highlight {
        padding: 28px;
    }


    .story-highlight h3 {
        font-size: 23px;
    }


    .story-value {
        padding: 25px;
    }


    .story-closing {
        padding: 38px 0;
    }


    .story-line {
        width: 35px;
    }


    .story-closing p {
        font-size: 15px;
    }

}

/* =========================================
   OUR TEAM PAGE
========================================= */

.team-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.team-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================
   TEAM HERO
========================================= */

.team-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.96),
            rgba(3, 29, 56, 0.78),
            rgba(3, 29, 56, 0.45)
        ),
        url("images/slide2.png");

    background-size: cover;
    background-position: center;
}

.team-hero-content {
    max-width: 780px;
    padding: 80px 0;
}

.team-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #e3bd69;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.team-hero h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 700;
}

.team-hero h1 span {
    display: block;
    color: #e3bd69;
}

.team-hero p {
    max-width: 680px;

    margin: 0;

    color: #e5edf5;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   TEAM INTRO
========================================= */

.team-intro {
    padding: 100px 0;
    background: #ffffff;
}

.team-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.team-intro-heading {
    position: relative;
}

.team-number {
    display: block;

    margin-bottom: 18px;

    color: #c99a3d;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.team-label {
    display: block;

    margin-bottom: 15px;

    color: #6b7785;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.team-intro-heading h2 {
    margin: 0;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.12;
}

.team-intro-heading h2 span {
    display: block;
    color: #c99a3d;
}

.team-intro-content {
    padding-top: 28px;
}

.team-intro-content p {
    margin: 0 0 22px;

    color: #5d6977;

    font-size: 16px;
    line-height: 1.9;
}

.team-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   TEAM ROLES
========================================= */

.team-roles {
    padding: 100px 0;

    background: #f7f8fa;
}

.team-section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.team-section-heading > span {
    display: block;

    margin-bottom: 14px;

    color: #c99a3d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.team-section-heading h2 {
    margin: 0;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.15;
}

.team-section-heading h2 strong {
    display: block;
    color: #c99a3d;
}


/* =========================================
   ROLE GRID
========================================= */

.team-role-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.team-role-card {
    position: relative;

    padding: 38px;

    background: #ffffff;

    border: 1px solid #e7e9ec;

    border-radius: 6px;

    box-shadow:
        0 8px 30px
        rgba(4, 29, 58, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.team-role-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 0;

    background: #c99a3d;

    border-radius: 6px 0 0 6px;

    transition: height 0.3s ease;
}

.team-role-card:hover {
    transform: translateY(-6px);

    border-color: #d9c28d;

    box-shadow:
        0 18px 40px
        rgba(4, 29, 58, 0.10);
}

.team-role-card:hover::before {
    height: 100%;
}


/* =========================================
   ROLE TOP
========================================= */

.team-role-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.team-role-number {
    color: #c99a3d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.team-role-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c99a3d;

    background: rgba(201, 154, 61, 0.10);

    border-radius: 50%;

    font-size: 18px;
}


/* =========================================
   ROLE CONTENT
========================================= */

.team-role-card h3 {
    margin: 0 0 17px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    line-height: 1.25;
}

.team-role-card h3 span {
    display: block;
    color: #c99a3d;
}

.team-role-card > p {
    margin: 0;

    color: #687482;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   CLOSING SECTION
========================================= */

.team-closing {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #031d38,
            #082d55
        );

    text-align: center;
}

.team-closing-content {
    max-width: 720px;
    margin: 0 auto;
}

.team-closing-content > span {
    display: block;

    margin-bottom: 18px;

    color: #e3bd69;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.team-closing h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.12;
}

.team-closing h2 strong {
    display: block;
    color: #e3bd69;
}

.team-closing p {
    max-width: 620px;

    margin: 0 auto 32px;

    color: #dce6f2;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   CLOSING BUTTON
========================================= */

.team-closing-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 15px 25px;

    background: #c99a3d;
    color: #ffffff;

    border: 1px solid #c99a3d;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.team-closing-btn span {
    font-size: 19px;

    transition:
        transform 0.3s ease;
}

.team-closing-btn:hover {
    background: #ffffff;
    color: #062a52;

    transform: translateY(-3px);
}

.team-closing-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .team-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .team-intro-content {
        padding-top: 0;
    }

    .team-role-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .team-hero {
        min-height: 450px;
    }

    .team-hero-content {
        padding: 65px 0;
    }

    .team-hero h1 {
        font-size: 42px;
    }

    .team-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .team-intro,
    .team-roles,
    .team-closing {
        padding: 70px 0;
    }

    .team-intro-heading h2 {
        font-size: 38px;
    }

    .team-role-card {
        padding: 28px 24px;
    }

    .team-role-card h3 {
        font-size: 22px;
    }

    .team-closing h2 {
        font-size: 38px;
    }

}

/* =========================================================
   WHO WE ARE PAGE
========================================================= */

.who-page {
    width: 100%;
    overflow: hidden;
    color: #26364a;
    background: #ffffff;
}

.who-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.who-hero {
    position: relative;
    min-height: 500px;

    display: flex;
    align-items: center;

    background-image:
        url("images/slide2.png");

    background-size: cover;
    background-position: center;
}

.who-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, .94),
            rgba(3, 29, 56, .70),
            rgba(3, 29, 56, .25)
        );
}

.who-hero-content {
    position: relative;
    z-index: 2;

    max-width: 980px;
    padding: 100px 0;
}

.who-eyebrow,
.who-section-label {
    display: block;

    color: #c99a3d;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.who-eyebrow {
    margin-bottom: 22px;
}

.who-hero h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
}

.who-hero h1 span {
    display: block;
    color: #e3bd69;
}

.who-hero p {
    max-width: 680px;

    margin: 0;

    color: #e5edf5;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.who-intro {
    padding: 110px 0;
    background: #ffffff;
}

.who-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: center;
}


/* IMAGE */

.who-intro-image {
    position: relative;
}

.who-intro-image img {
    width: 100%;
    height: 520px;

    display: block;

    object-fit: cover;

    border-radius: 5px;
}

.who-image-badge {
    position: absolute;

    right: -25px;
    bottom: 35px;

    width: 150px;
    min-height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #c99a3d;
    color: #ffffff;

    border-radius: 4px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, .15);
}

.who-image-badge strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;
}

.who-image-badge span {
    max-width: 100px;

    margin-top: 5px;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.5;
    letter-spacing: 1px;
    text-align: center;

    text-transform: uppercase;
}


/* CONTENT */

.who-intro-content {
    padding-right: 20px;
}

.who-intro-content .who-section-label {
    margin-bottom: 17px;
}

.who-intro-content h2,
.who-heading h2,
.who-approach-content h2,
.highlight-content h2 {
    margin: 0 0 24px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 44px);

    line-height: 1.12;
}

.who-intro-content h2 span,
.who-heading h2 span,
.who-approach-content h2 span,
.highlight-content h2 span {
    color: #c99a3d;
    display: block;
}

.who-intro-content p {
    margin: 0 0 18px;

    color: #687585;

    font-size: 15px;
    line-height: 1.85;
}

.who-intro-content .who-lead {
    color: #26364a;

    font-size: 18px;
    line-height: 1.7;
}


/* BUTTON */

.who-outline-btn,
.who-primary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 18px;

    padding: 15px 23px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.who-outline-btn {
    color: #062a52;

    border: 1px solid #c99a3d;
}

.who-outline-btn:hover {
    background: #c99a3d;
    color: #ffffff;

    transform: translateY(-2px);
}

.who-outline-btn span,
.who-primary-btn span {
    font-size: 18px;

    transition: transform .3s ease;
}

.who-outline-btn:hover span,
.who-primary-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   WHAT DRIVES US
========================================================= */

.who-drives {
    padding: 105px 0;

    background: #f7f8fa;
}

.who-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.who-heading.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.who-heading .who-section-label {
    margin-bottom: 16px;
}

.who-heading p {
    color: #6b7785;

    font-size: 16px;
    line-height: 1.8;
}

.who-drive-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.who-drive-card {
    position: relative;

    padding: 38px 32px;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 5px;

    transition: .3s ease;
}

.who-drive-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(4, 29, 58, .10);
}

.who-drive-card.featured {
    border-top: 3px solid #c99a3d;
}

.drive-number {
    color: #c99a3d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.drive-icon {
    width: 54px;
    height: 54px;

    margin: 25px 0 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #c99a3d;

    background: rgba(201,154,61,.10);

    border-radius: 50%;

    font-size: 24px;
}

.who-drive-card h3 {
    margin: 0 0 13px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
}

.who-drive-card p {
    margin: 0;

    color: #6b7785;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   OUR APPROACH
========================================================= */

.who-approach {
    padding: 110px 0;
    background: #ffffff;
}

.who-approach-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.who-approach-content .who-section-label {
    margin-bottom: 18px;
}

.who-approach-content > p {
    color: #6b7785;

    font-size: 15px;
    line-height: 1.85;
}

.who-approach-list {
    margin-top: 35px;
}

.approach-item {
    display: flex;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid #e8e8e8;
}

.approach-item > span {
    color: #c99a3d;

    font-size: 12px;
    font-weight: 700;
}

.approach-item h4 {
    margin: 0 0 5px;

    color: #062a52;

    font-size: 16px;
}

.approach-item p {
    margin: 0;

    color: #788493;

    font-size: 13px;
    line-height: 1.6;
}


/* IMAGE */

.who-approach-image {
    position: relative;
}

.who-approach-image img {
    width: 100%;
    height: 540px;

    display: block;

    object-fit: cover;

    border-radius: 5px;
}

.approach-quote {
    position: absolute;

    left: -30px;
    bottom: 30px;

    width: 270px;

    padding: 25px 28px;

    background: #062a52;
    color: #ffffff;

    border-left: 4px solid #c99a3d;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.18);
}

.approach-quote span {
    color: #e3bd69;

    font-family: Georgia, serif;

    font-size: 40px;

    line-height: .5;
}

.approach-quote p {
    margin: 10px 0 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   FOCUS AREAS
========================================================= */

.who-focus {
    padding: 110px 0;

    background: #f7f8fa;
}

.who-focus .who-heading {
    margin-bottom: 50px;
}

.who-focus-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.focus-card {
    overflow: hidden;

    background: #ffffff;

    border-radius: 5px;

    border: 1px solid #e8e8e8;

    transition: .3s ease;
}

.focus-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 35px
        rgba(4,29,58,.10);
}

.focus-image {
    height: 210px;

    overflow: hidden;
}

.focus-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.focus-card:hover .focus-image img {
    transform: scale(1.05);
}

.focus-content {
    padding: 25px;
}

.focus-content > span {
    color: #c99a3d;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.focus-content h3 {
    margin: 12px 0 12px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    line-height: 1.25;
}

.focus-content p {
    margin: 0;

    color: #6b7785;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   COMMITMENT
========================================================= */

.who-highlight {
    padding: 110px 0;
    background: #ffffff;
}

.who-highlight-box {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: #062a52;

    border-radius: 6px;

    overflow: hidden;
}

.highlight-image {
    min-height: 500px;
}

.highlight-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.highlight-content {
    padding: 65px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-content .who-section-label {
    margin-bottom: 18px;
}

.highlight-content h2 {
    color: #ffffff;
}

.highlight-content p {
    margin: 0 0 16px;

    color: #d5e0eb;

    font-size: 15px;
    line-height: 1.8;
}

.highlight-actions {
    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;

    margin-top: 12px;
}

.who-primary-btn {
    background: #c99a3d;
    color: #ffffff;

    border: 1px solid #c99a3d;
}

.who-primary-btn:hover {
    background: #e3bd69;

    border-color: #e3bd69;

    transform: translateY(-2px);
}

.who-text-btn {
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    border-bottom: 1px solid #c99a3d;

    padding-bottom: 5px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.who-bottom-cta {
    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #031d38,
            #082d55
        );

    text-align: center;
}

.who-bottom-content {
    max-width: 720px;
    margin: auto;
}

.who-bottom-content > span {
    color: #e3bd69;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}

.who-bottom-content h2 {
    margin: 18px 0 18px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;
}

.who-bottom-content h2 strong {
    display: block;

    color: #e3bd69;

    font-weight: 700;
}

.who-bottom-content p {
    max-width: 620px;

    margin: 0 auto;

    color: #d6e0ea;

    font-size: 15px;
    line-height: 1.8;
}

.who-bottom-content .who-primary-btn {
    margin-top: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .who-intro-grid,
    .who-approach-grid,
    .who-highlight-box {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-drive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-focus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-intro-image img {
        height: 450px;
    }

    .who-approach-image img {
        height: 450px;
    }

    .highlight-image {
        min-height: 400px;
    }

    .highlight-content {
        padding: 55px 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .who-hero {
        min-height: 520px;
    }

    .who-hero-content {
        padding: 80px 0;
    }

    .who-hero h1 {
        font-size: 43px;
    }

    .who-hero p {
        font-size: 15px;
    }


    .who-intro,
    .who-drives,
    .who-approach,
    .who-focus,
    .who-highlight {
        padding: 75px 0;
    }


    .who-intro-grid,
    .who-approach-grid,
    .who-highlight-box {
        gap: 40px;
    }


    .who-intro-image img {
        height: 390px;
    }

    .who-image-badge {
        right: 15px;
        bottom: 20px;

        width: 125px;
        min-height: 120px;
    }

    .who-image-badge strong {
        font-size: 30px;
    }


    .who-intro-content h2,
    .who-heading h2,
    .who-approach-content h2,
    .highlight-content h2 {
        font-size: 38px;
    }


    .who-drive-grid,
    .who-focus-grid {
        grid-template-columns: 1fr;
    }


    .who-approach-image img {
        height: 400px;
    }

    .approach-quote {
        left: 15px;
        bottom: 20px;

        width: 240px;
    }


    .highlight-image {
        min-height: 350px;
    }

    .highlight-content {
        padding: 45px 28px;
    }


    .highlight-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }


    .who-bottom-cta {
        padding: 75px 20px;
    }

}

/* =========================================================
   YOUTH CAREER & VOCATIONAL TRAINING PAGE
========================================================= */

.ycv-page {
    --ycv-navy: #062a52;
    --ycv-dark: #031d38;
    --ycv-blue: #123f6d;
    --ycv-gold: #c99a3d;
    --ycv-light-gold: #e3bd69;
    --ycv-white: #ffffff;
    --ycv-light: #f7f8fa;
    --ycv-text: #26364a;
    --ycv-muted: #6b7785;
    --ycv-border: #e7e9ed;

    color: var(--ycv-text);
    font-family: "Segoe UI", Arial, sans-serif;
}


/* =========================================================
   CONTAINER
========================================================= */

.ycv-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.ycv-hero {
    position: relative;
    min-height: 650px;

    display: flex;
    align-items: center;

    background:
        url("images/slide1.png")
        center / cover
        no-repeat;

    overflow: hidden;
}

.ycv-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.94),
            rgba(3, 29, 56, 0.72),
            rgba(3, 29, 56, 0.25)
        );
}

.ycv-hero-grid {
    position: relative;
    z-index: 2;
}

.ycv-hero-content {
    max-width: 760px;
}

.ycv-eyebrow,
.ycv-section-label {
    display: inline-block;

    color: var(--ycv-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.ycv-eyebrow {
    margin-bottom: 22px;
}

.ycv-hero h1 {
    margin: 0 0 25px;

    color: var(--ycv-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.05;
}

.ycv-hero h1 span {
    display: block;
    color: var(--ycv-light-gold);
}

.ycv-hero p {
    max-width: 670px;

    margin: 0 0 35px;

    color: #e8eef5;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.ycv-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ycv-btn-primary,
.ycv-btn-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.ycv-btn-primary {
    background: var(--ycv-gold);
    color: var(--ycv-white);

    border: 1px solid var(--ycv-gold);
}

.ycv-btn-primary:hover {
    background: var(--ycv-light-gold);
    border-color: var(--ycv-light-gold);

    transform: translateY(-2px);
}

.ycv-btn-primary span {
    font-size: 19px;

    transition: transform 0.3s ease;
}

.ycv-btn-primary:hover span {
    transform: translateX(4px);
}

.ycv-btn-outline {
    color: var(--ycv-white);

    border: 1px solid rgba(255,255,255,.65);
}

.ycv-btn-outline:hover {
    background: var(--ycv-white);
    color: var(--ycv-navy);
}


/* =========================================================
   INTRO
========================================================= */

.ycv-intro {
    padding: 110px 0;
    background: var(--ycv-white);
}

.ycv-two-column {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 85px;

    align-items: center;
}

.ycv-image-wrap {
    position: relative;
}

.ycv-image-wrap img {
    display: block;

    width: 100%;
    height: 540px;

    object-fit: cover;

    border-radius: 5px;
}

.ycv-image-wrap::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -18px;
    bottom: -18px;

    border-right: 3px solid var(--ycv-gold);
    border-bottom: 3px solid var(--ycv-gold);

    z-index: 0;
}

.ycv-image-badge {
    position: absolute;

    left: -20px;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 17px 20px;

    background: var(--ycv-navy);
    color: var(--ycv-white);

    border-left: 4px solid var(--ycv-gold);

    box-shadow: 0 12px 30px rgba(3,29,56,.18);

    z-index: 2;
}

.ycv-image-badge strong {
    color: var(--ycv-light-gold);
    font-size: 25px;
}

.ycv-image-badge span {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ycv-content h2,
.ycv-heading-center h2 {
    margin: 15px 0 25px;

    color: var(--ycv-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.15;
}

.ycv-content h2 span,
.ycv-heading-center h2 span {
    display: block;
    color: var(--ycv-gold);
}

.ycv-content > p {
    margin-bottom: 18px;

    color: var(--ycv-muted);

    font-size: 16px;
    line-height: 1.85;
}

.ycv-highlight {
    display: flex;

    gap: 15px;

    margin-top: 28px;
    padding: 20px;

    background: #faf8f2;

    border-left: 3px solid var(--ycv-gold);
}

.ycv-highlight-icon {
    color: var(--ycv-gold);
    font-size: 22px;
}

.ycv-highlight strong {
    color: var(--ycv-navy);
    font-size: 15px;
}

.ycv-highlight p {
    margin: 6px 0 0;

    color: var(--ycv-muted);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   STATS
========================================================= */

.ycv-stats {
    padding: 0 0 100px;
}

.ycv-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--ycv-border);
    border-bottom: 1px solid var(--ycv-border);
}

.ycv-stat {
    padding: 32px 25px;

    border-right: 1px solid var(--ycv-border);

    text-align: center;
}

.ycv-stat:last-child {
    border-right: none;
}

.ycv-stat span {
    display: block;

    margin-bottom: 8px;

    color: var(--ycv-gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.ycv-stat strong {
    display: block;

    color: var(--ycv-navy);

    font-family: Georgia, serif;

    font-size: 20px;
}

.ycv-stat small {
    color: var(--ycv-muted);

    font-size: 12px;
}


/* =========================================================
   FEATURES
========================================================= */

.ycv-features {
    padding: 110px 0;

    background: var(--ycv-light);
}

.ycv-heading-center {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.ycv-heading-center p {
    color: var(--ycv-muted);

    font-size: 15px;
    line-height: 1.8;
}

.ycv-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.ycv-feature-card {
    position: relative;

    padding: 32px 27px;

    background: var(--ycv-white);

    border: 1px solid var(--ycv-border);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.ycv-feature-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(4,29,58,.10);
}

.ycv-card-number {
    color: var(--ycv-gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.ycv-card-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 25px 0 20px;

    color: var(--ycv-gold);

    background:
        rgba(201,154,61,.10);

    border-radius: 50%;

    font-size: 20px;
}

.ycv-feature-card h3 {
    margin-bottom: 13px;

    color: var(--ycv-navy);

    font-family: Georgia, serif;

    font-size: 21px;
    line-height: 1.25;
}

.ycv-feature-card p {
    color: var(--ycv-muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   DEVELOPMENT
========================================================= */

.ycv-development {
    padding: 110px 0;
}

.ycv-check-list {
    margin-top: 30px;
}

.ycv-check-list div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;
}

.ycv-check-list span {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(201,154,61,.12);

    color: var(--ycv-gold);

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}

.ycv-check-list p {
    margin: 0;

    color: var(--ycv-text);

    font-size: 14px;
}

.ycv-second-image img {
    height: 500px;
}

.ycv-quote-card {
    position: absolute;

    right: -25px;
    bottom: 30px;

    width: 245px;

    padding: 25px;

    background: var(--ycv-navy);
    color: var(--ycv-white);

    border-bottom: 3px solid var(--ycv-gold);

    box-shadow:
        0 15px 35px
        rgba(3,29,56,.20);
}

.ycv-quote-card span {
    display: block;

    height: 25px;

    color: var(--ycv-light-gold);

    font-family: Georgia, serif;

    font-size: 40px;
}

.ycv-quote-card p {
    margin: 5px 0 0;

    font-family: Georgia, serif;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   JOURNEY
========================================================= */

.ycv-journey {
    padding: 110px 0;

    background: var(--ycv-light);
}

.ycv-journey-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 55px;
}

.ycv-journey-item {
    position: relative;

    padding: 0 30px;

    border-left: 1px solid var(--ycv-border);
}

.ycv-journey-item:first-child {
    border-left: none;
}

.ycv-journey-item > span {
    display: block;

    margin-bottom: 22px;

    color: var(--ycv-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.ycv-journey-item h3 {
    margin-bottom: 12px;

    color: var(--ycv-navy);

    font-family: Georgia, serif;

    font-size: 23px;
}

.ycv-journey-item p {
    margin: 0;

    color: var(--ycv-muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CTA
========================================================= */

.ycv-cta {
    padding: 100px 0;
}

.ycv-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    background:
        linear-gradient(
            110deg,
            var(--ycv-dark),
            var(--ycv-navy)
        );

    border-radius: 5px;
}

.ycv-cta-box h2 {
    margin: 14px 0;

    color: var(--ycv-white);

    font-family: Georgia, serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;
}

.ycv-cta-box h2 span {
    color: var(--ycv-light-gold);
}

.ycv-cta-box p {
    max-width: 650px;

    margin: 0;

    color: #dce6f2;

    font-size: 14px;
    line-height: 1.8;
}

.ycv-cta-box .ycv-btn-primary {
    flex-shrink: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ycv-feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ycv-journey-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }

    .ycv-journey-item:nth-child(3) {
        border-left: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ycv-hero {
        min-height: 620px;
    }

    .ycv-hero-content {
        max-width: 100%;
    }

    .ycv-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .ycv-hero h1 {
        font-size: 44px;
    }

    .ycv-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .ycv-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .ycv-two-column {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ycv-intro,
    .ycv-development,
    .ycv-features,
    .ycv-journey {
        padding: 75px 0;
    }

    .ycv-image-wrap img,
    .ycv-second-image img {
        height: 400px;
    }

    .ycv-image-badge {
        left: 15px;
        bottom: 20px;
    }

    .ycv-quote-card {
        right: 10px;
        bottom: 20px;
    }

    .ycv-stats {
        padding-bottom: 70px;
    }

    .ycv-stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ycv-stat:nth-child(2) {
        border-right: none;
    }

    .ycv-stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--ycv-border);
    }

    .ycv-feature-grid {
        grid-template-columns: 1fr;
    }

    .ycv-journey-grid {
        grid-template-columns: 1fr;
    }

    .ycv-journey-item,
    .ycv-journey-item:nth-child(3) {
        border-left: none;
        border-bottom: 1px solid var(--ycv-border);

        padding: 0 0 25px;
    }

    .ycv-journey-item:last-child {
        border-bottom: none;
    }

    .ycv-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 28px;
    }

}

/* =========================================================
   ANTI-DRUG & YOUTH AWARENESS PAGE
========================================================= */

.aday-page {

    --aday-navy: #062a52;
    --aday-dark: #031d38;
    --aday-blue: #123f6d;

    --aday-gold: #c99a3d;
    --aday-light-gold: #e3bd69;

    --aday-white: #ffffff;
    --aday-light: #f7f8fa;

    --aday-text: #26364a;
    --aday-muted: #6b7785;

    --aday-border: #e6e9ed;

    color: var(--aday-text);

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;
}


/* =========================================================
   CONTAINER
========================================================= */

.aday-container {

    width: min(1180px, 92%);

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.aday-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        url("images/slide2.png")
        center / cover
        no-repeat;
}


.aday-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,29,56,.95) 0%,
            rgba(3,29,56,.76) 40%,
            rgba(3,29,56,.35) 75%,
            rgba(3,29,56,.12) 100%
        );
}


.aday-hero-content {

    position: relative;

    z-index: 2;

    max-width: 780px;
}


.aday-eyebrow,
.aday-section-label {

    display: inline-block;

    color: var(--aday-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.aday-eyebrow {

    margin-bottom: 22px;
}


.aday-hero h1 {

    margin: 0 0 25px;

    color: var(--aday-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(46px, 6vw, 76px);

    line-height: 1.06;
}


.aday-hero h1 span {

    display: block;

    color: var(--aday-light-gold);
}


.aday-hero p {

    max-width: 680px;

    margin: 0 0 35px;

    color: #e7edf4;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.aday-hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;
}


.aday-primary-btn,
.aday-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 54px;

    padding: 0 25px;

    border-radius: 4px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}


.aday-primary-btn {

    background: var(--aday-gold);

    color: var(--aday-white);

    border: 1px solid var(--aday-gold);
}


.aday-primary-btn:hover {

    background: var(--aday-light-gold);

    border-color: var(--aday-light-gold);

    transform: translateY(-2px);
}


.aday-primary-btn span {

    font-size: 19px;

    transition: .3s ease;
}


.aday-primary-btn:hover span {

    transform: translateX(4px);
}


.aday-outline-btn {

    color: var(--aday-white);

    border:
        1px solid
        rgba(255,255,255,.65);
}


.aday-outline-btn:hover {

    background: var(--aday-white);

    color: var(--aday-navy);
}


/* =========================================================
   INTRO
========================================================= */

.aday-intro {

    padding: 110px 0;

    background: var(--aday-white);
}


.aday-two-column {

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap: 85px;

    align-items: center;
}


.aday-image-box {

    position: relative;
}


.aday-image-box img {

    display: block;

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 5px;
}


.aday-image-box::after {

    content: "";

    position: absolute;

    right: -18px;

    bottom: -18px;

    width: 90px;

    height: 90px;

    border-right:
        3px solid
        var(--aday-gold);

    border-bottom:
        3px solid
        var(--aday-gold);

    z-index: 0;
}


.aday-image-tag {

    position: absolute;

    left: -20px;

    bottom: 35px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px 20px;

    background: var(--aday-navy);

    color: var(--aday-white);

    border-left:
        4px solid
        var(--aday-gold);

    box-shadow:
        0 12px 30px
        rgba(3,29,56,.18);
}


.aday-image-tag strong {

    color: var(--aday-light-gold);

    font-size: 25px;
}


.aday-image-tag span {

    font-size: 10px;

    line-height: 1.4;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   CONTENT
========================================================= */

.aday-content h2,
.aday-heading h2 {

    margin: 15px 0 25px;

    color: var(--aday-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(34px,4vw,50px);

    line-height: 1.15;
}


.aday-content h2 span,
.aday-heading h2 span {

    display: block;

    color: var(--aday-gold);
}


.aday-content > p {

    margin-bottom: 18px;

    color: var(--aday-muted);

    font-size: 15px;

    line-height: 1.85;
}


.aday-highlight {

    display: flex;

    gap: 15px;

    margin-top: 28px;

    padding: 20px;

    background: #faf8f2;

    border-left:
        3px solid
        var(--aday-gold);
}


.aday-highlight-icon {

    color: var(--aday-gold);

    font-size: 22px;
}


.aday-highlight strong {

    color: var(--aday-navy);

    font-size: 15px;
}


.aday-highlight p {

    margin: 6px 0 0;

    color: var(--aday-muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   STATS
========================================================= */

.aday-stats {

    padding-bottom: 100px;
}


.aday-stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top:
        1px solid
        var(--aday-border);

    border-bottom:
        1px solid
        var(--aday-border);
}


.aday-stat {

    padding: 32px 20px;

    text-align: center;

    border-right:
        1px solid
        var(--aday-border);
}


.aday-stat:last-child {

    border-right: none;
}


.aday-stat span {

    display: block;

    margin-bottom: 8px;

    color: var(--aday-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.aday-stat strong {

    display: block;

    color: var(--aday-navy);

    font-family: Georgia, serif;

    font-size: 20px;
}


.aday-stat small {

    color: var(--aday-muted);

    font-size: 12px;
}


/* =========================================================
   PROGRAMMES
========================================================= */

.aday-programmes {

    padding: 110px 0;

    background: var(--aday-light);
}


.aday-heading {

    max-width: 700px;

    margin-bottom: 55px;
}


.aday-heading > p {

    max-width: 620px;

    color: var(--aday-muted);

    font-size: 15px;

    line-height: 1.8;
}


.aday-card-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;
}


.aday-card {

    background: var(--aday-white);

    border:
        1px solid
        var(--aday-border);

    transition: .3s ease;

    overflow: hidden;
}


.aday-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(4,29,58,.10);
}


.aday-card-image {

    position: relative;

    height: 245px;

    overflow: hidden;
}


.aday-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.aday-card:hover
.aday-card-image img {

    transform: scale(1.04);
}


.aday-card-image > span {

    position: absolute;

    top: 18px;

    left: 18px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--aday-navy);

    color: var(--aday-light-gold);

    font-size: 11px;

    font-weight: 700;
}


.aday-card-content {

    padding: 28px;
}


.aday-card-label {

    color: var(--aday-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.aday-card h3 {

    margin: 12px 0;

    color: var(--aday-navy);

    font-family: Georgia, serif;

    font-size: 22px;

    line-height: 1.25;
}


.aday-card p {

    margin: 0;

    color: var(--aday-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   COMMUNITY SECTION
========================================================= */

.aday-community {

    padding: 110px 0;

    background: var(--aday-white);
}


.aday-large-image img {

    height: 500px;
}


.aday-quote {

    position: absolute;

    right: -25px;

    bottom: 30px;

    width: 250px;

    padding: 25px;

    background: var(--aday-navy);

    color: var(--aday-white);

    border-bottom:
        3px solid
        var(--aday-gold);

    box-shadow:
        0 15px 35px
        rgba(3,29,56,.20);
}


.aday-quote span {

    display: block;

    height: 25px;

    color: var(--aday-light-gold);

    font-family: Georgia, serif;

    font-size: 40px;
}


.aday-quote p {

    margin: 5px 0 0;

    font-family: Georgia, serif;

    font-size: 15px;

    line-height: 1.6;
}


/* =========================================================
   CHECK LIST
========================================================= */

.aday-check-list {

    margin-top: 30px;
}


.aday-check-list div {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 14px;
}


.aday-check-list span {

    width: 24px;

    height: 24px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(201,154,61,.12);

    color: var(--aday-gold);

    font-size: 12px;

    font-weight: 700;
}


.aday-check-list p {

    margin: 0;

    color: var(--aday-text);

    font-size: 14px;
}


/* =========================================================
   PROCESS
========================================================= */

.aday-process {

    padding: 110px 0;

    background: var(--aday-light);
}


.aday-process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    margin-top: 50px;
}


.aday-process-item {

    padding:
        0 28px;

    border-left:
        1px solid
        var(--aday-border);
}


.aday-process-item:first-child {

    border-left: none;
}


.aday-process-item > span {

    display: block;

    margin-bottom: 20px;

    color: var(--aday-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.aday-process-item h3 {

    margin-bottom: 12px;

    color: var(--aday-navy);

    font-family: Georgia, serif;

    font-size: 22px;
}


.aday-process-item p {

    margin: 0;

    color: var(--aday-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   CTA
========================================================= */

.aday-cta {

    padding: 100px 0;
}


.aday-cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    background:
        linear-gradient(
            110deg,
            var(--aday-dark),
            var(--aday-navy)
        );

    border-radius: 5px;
}


.aday-cta-box h2 {

    margin: 14px 0;

    color: var(--aday-white);

    font-family: Georgia, serif;

    font-size:
        clamp(32px,4vw,48px);

    line-height: 1.15;
}


.aday-cta-box h2 span {

    color: var(--aday-light-gold);
}


.aday-cta-box p {

    max-width: 650px;

    margin: 0;

    color: #dce6f2;

    font-size: 14px;

    line-height: 1.8;
}


.aday-cta-box
.aday-primary-btn {

    flex-shrink: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1000px) {

    .aday-card-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .aday-process-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 45px;
    }

    .aday-process-item:nth-child(3) {

        border-left: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:700px) {

    .aday-hero {

        min-height: 620px;
    }


    .aday-hero h1 {

        font-size: 43px;
    }


    .aday-hero p {

        font-size: 15px;

        line-height: 1.7;
    }


    .aday-hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .aday-two-column {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .aday-intro,
    .aday-programmes,
    .aday-community,
    .aday-process {

        padding: 75px 0;
    }


    .aday-image-box img,
    .aday-large-image img {

        height: 400px;
    }


    .aday-image-tag {

        left: 15px;

        bottom: 20px;
    }


    .aday-quote {

        right: 10px;

        bottom: 20px;

        width: 230px;
    }


    .aday-stats {

        padding-bottom: 70px;
    }


    .aday-stats-grid {

        grid-template-columns:
            repeat(2,1fr);
    }


    .aday-stat:nth-child(2) {

        border-right: none;
    }


    .aday-stat:nth-child(-n+2) {

        border-bottom:
            1px solid
            var(--aday-border);
    }


    .aday-card-grid {

        grid-template-columns: 1fr;
    }


    .aday-process-grid {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .aday-process-item,
    .aday-process-item:nth-child(3) {

        padding:
            0 0 25px;

        margin-bottom: 25px;

        border-left: none;

        border-bottom:
            1px solid
            var(--aday-border);
    }


    .aday-process-item:last-child {

        border-bottom: none;

        margin-bottom: 0;
    }


    .aday-cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 40px 28px;
    }

}

/* =========================================================
   COMMUNITY HEALTHCARE PAGE
========================================================= */

.healthcare-page {
    background: #ffffff;
    color: #26364a;
}

.healthcare-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.healthcare-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #031d38;
}

.healthcare-hero-image {
    position: absolute;
    inset: 0;
}

.healthcare-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.healthcare-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.94),
            rgba(3, 29, 56, 0.70),
            rgba(3, 29, 56, 0.20)
        );
}

.healthcare-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 0;
}

.healthcare-eyebrow {
    display: inline-block;
    margin-bottom: 22px;

    color: #e3bd69;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.healthcare-hero h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.06;
}

.healthcare-hero h1 span {
    display: block;
    color: #e3bd69;
}

.healthcare-hero p {
    max-width: 620px;

    margin-bottom: 35px;

    color: #e5edf5;

    font-size: 17px;
    line-height: 1.8;
}

.healthcare-hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.healthcare-primary-btn,
.healthcare-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: all .3s ease;
}

.healthcare-primary-btn {
    gap: 14px;

    background: #c99a3d;
    color: #ffffff;

    border: 1px solid #c99a3d;
}

.healthcare-primary-btn span {
    font-size: 19px;
    transition: transform .3s ease;
}

.healthcare-primary-btn:hover {
    background: #ffffff;
    color: #062a52;
    transform: translateY(-2px);
}

.healthcare-primary-btn:hover span {
    transform: translateX(4px);
}

.healthcare-outline-btn {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.65);
}

.healthcare-outline-btn:hover {
    background: #ffffff;
    color: #062a52;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.healthcare-intro {
    padding: 110px 0;
    background: #ffffff;
}

.healthcare-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.healthcare-intro-image {
    position: relative;
}

.healthcare-intro-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.healthcare-image-badge {
    position: absolute;

    right: -25px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 22px;

    background: #062a52;
    color: #ffffff;

    box-shadow: 0 15px 35px rgba(3,29,56,.18);
}

.healthcare-image-badge strong {
    color: #e3bd69;
    font-size: 25px;
}

.healthcare-image-badge span {
    max-width: 130px;

    font-size: 11px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.healthcare-section-label {
    display: block;

    margin-bottom: 18px;

    color: #c99a3d;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.healthcare-intro-content h2,
.healthcare-story-content h2 {
    margin: 0 0 25px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 46px;
    line-height: 1.15;
}

.healthcare-intro-content h2 span,
.healthcare-story-content h2 span {
    display: block;
    color: #c99a3d;
}

.healthcare-intro-content > p {
    margin-bottom: 18px;

    color: #6b7785;

    font-size: 15px;
    line-height: 1.85;
}

.healthcare-highlight {
    display: flex;
    gap: 16px;

    margin-top: 30px;
    padding: 20px;

    background: #faf8f2;

    border-left: 3px solid #c99a3d;
}

.highlight-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #c99a3d;
    color: #ffffff;

    font-size: 22px;
}

.healthcare-highlight strong {
    display: block;

    margin-bottom: 5px;

    color: #062a52;
    font-size: 14px;
}

.healthcare-highlight p {
    margin: 0;

    color: #6b7785;
    font-size: 13px;
}


/* =========================================================
   SERVICES
========================================================= */

.healthcare-services {
    padding: 110px 0;
    background: #f7f8fa;
}

.healthcare-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.healthcare-heading > span {
    display: block;

    margin-bottom: 15px;

    color: #c99a3d;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.healthcare-heading h2 {
    margin: 0 0 16px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 46px;
    line-height: 1.15;
}

.healthcare-heading h2 strong {
    display: block;
    color: #c99a3d;
}

.healthcare-heading p {
    color: #6b7785;

    font-size: 15px;
    line-height: 1.8;
}

.healthcare-service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.healthcare-service-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.healthcare-service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(4,29,58,.12);
}

.service-image {
    position: relative;
    height: 210px;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.service-number {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 10px;

    background: #062a52;
    color: #e3bd69;

    font-size: 11px;
    font-weight: 700;
}

.service-content {
    position: relative;

    padding: 27px 23px 30px;
}

.service-icon {
    position: absolute;

    top: -21px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c99a3d;
    color: #ffffff;

    font-size: 19px;
}

.service-content h3 {
    margin: 0 0 13px;

    color: #062a52;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    line-height: 1.3;
}

.service-content p {
    margin: 0;

    color: #6b7785;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   COMMUNITY STORY
========================================================= */

.healthcare-story {
    padding: 110px 0;
    background: #ffffff;
}

.healthcare-story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.healthcare-story-content > p {
    color: #6b7785;

    font-size: 15px;
    line-height: 1.85;
}

.healthcare-mini-stats {
    display: flex;
    gap: 35px;

    margin-top: 35px;
}

.healthcare-mini-stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.healthcare-mini-stats strong {
    color: #c99a3d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
}

.healthcare-mini-stats span {
    color: #062a52;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.healthcare-story-image {
    position: relative;
}

.healthcare-story-image > img {
    width: 100%;
    height: 510px;

    display: block;

    object-fit: cover;
}

.story-quote {
    position: absolute;

    left: -35px;
    bottom: 30px;

    max-width: 290px;

    padding: 24px 28px;

    background: #062a52;
    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(3,29,56,.20);
}

.story-quote > span {
    display: block;

    height: 25px;

    color: #e3bd69;

    font-family: Georgia, serif;

    font-size: 38px;
    line-height: 30px;
}

.story-quote p {
    margin: 5px 0 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   CTA
========================================================= */

.healthcare-cta {
    position: relative;

    padding: 90px 0;

    background:
        linear-gradient(
            100deg,
            #031d38,
            #082d55
        );

    overflow: hidden;
}

.healthcare-cta::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -100px;
    top: -100px;

    border: 1px solid rgba(227,189,105,.20);
    border-radius: 50%;
}

.healthcare-cta-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    text-align: center;

    margin: 0 auto;
}

.healthcare-cta-content > span {
    display: block;

    margin-bottom: 17px;

    color: #e3bd69;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.healthcare-cta h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 44px;
    line-height: 1.2;
}

.healthcare-cta h2 strong {
    display: block;
    color: #e3bd69;
}

.healthcare-cta p {
    max-width: 620px;

    margin: 0 auto 30px;

    color: #dce6f2;

    font-size: 15px;
    line-height: 1.8;
}

.healthcare-cta-btn {
    display: inline-flex;

    align-items: center;
    gap: 14px;

    padding: 16px 26px;

    background: #c99a3d;
    color: #ffffff;

    border: 1px solid #c99a3d;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.healthcare-cta-btn span {
    font-size: 19px;
    transition: transform .3s ease;
}

.healthcare-cta-btn:hover {
    background: #ffffff;
    color: #062a52;
    transform: translateY(-2px);
}

.healthcare-cta-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .healthcare-intro-grid,
    .healthcare-story-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .healthcare-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .healthcare-intro-image img,
    .healthcare-story-image > img {
        height: 450px;
    }

    .story-quote {
        left: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .healthcare-hero {
        min-height: 650px;
    }

    .healthcare-hero-content {
        padding: 80px 0;
    }

    .healthcare-hero h1 {
        font-size: 43px;
    }

    .healthcare-hero p {
        font-size: 15px;
    }

    .healthcare-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .healthcare-primary-btn,
    .healthcare-outline-btn {
        width: 100%;
    }

    .healthcare-intro,
    .healthcare-services,
    .healthcare-story {
        padding: 75px 0;
    }

    .healthcare-intro-grid,
    .healthcare-story-grid {
        gap: 45px;
    }

    .healthcare-intro-content h2,
    .healthcare-story-content h2,
    .healthcare-heading h2 {
        font-size: 36px;
    }

    .healthcare-intro-image img,
    .healthcare-story-image > img {
        height: 380px;
    }

    .healthcare-image-badge {
        right: 15px;
        bottom: 15px;
    }

    .healthcare-service-grid {
        grid-template-columns: 1fr;
    }

    .healthcare-mini-stats {
        gap: 20px;
    }

    .story-quote {
        position: relative;

        left: 0;
        bottom: auto;

        max-width: 100%;

        margin-top: -1px;
    }

    .healthcare-cta {
        padding: 75px 0;
    }

    .healthcare-cta h2 {
        font-size: 35px;
    }

}

/* =========================================
   EDUCATION PAGE
========================================= */

.education-page {
    --edu-navy: #062a52;
    --edu-dark: #031d38;
    --edu-gold: #c99a3d;
    --edu-light-gold: #e3bd69;
    --edu-white: #ffffff;
    --edu-bg: #f7f8fa;
    --edu-text: #26364a;
    --edu-muted: #6b7785;

    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--edu-text);
    background: #fff;
}

.education-page * {
    box-sizing: border-box;
}

.education-page img {
    width: 100%;
    display: block;
}

.education-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================
   HERO
========================================= */

.education-hero {
    position: relative;
    min-height: 620px;

    display: flex;
    align-items: center;

    background:
        url("images/youth3.png")
        center / cover no-repeat;
}

.education-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,29,56,.94),
            rgba(3,29,56,.70),
            rgba(3,29,56,.22)
        );
}

.education-hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: 100px 0;
}

.education-eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--edu-light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.education-hero h1 {
    margin: 0 0 25px;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
}

.education-hero h1 span {
    display: block;
    color: var(--edu-light-gold);
}

.education-hero p {
    max-width: 650px;

    margin: 0 0 35px;

    color: #e8edf3;

    font-size: 17px;
    line-height: 1.8;
}

.education-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.education-primary-btn,
.education-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 15px 24px;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.education-primary-btn {
    background: var(--edu-gold);
    color: #fff;
}

.education-primary-btn span {
    font-size: 19px;
}

.education-primary-btn:hover {
    background: #fff;
    color: var(--edu-navy);
    transform: translateY(-2px);
}

.education-outline-btn {
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
}

.education-outline-btn:hover {
    background: #fff;
    color: var(--edu-navy);
}


/* =========================================
   INTRO
========================================= */

.education-intro {
    padding: 110px 0;
    background: #fff;
}

.education-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.education-intro-image {
    position: relative;
}

.education-intro-image img {
    height: 540px;
    object-fit: cover;
    border-radius: 4px;
}

.education-image-badge {
    position: absolute;

    right: -25px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 25px;

    background: var(--edu-gold);
    color: #fff;

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.education-image-badge strong {
    font-family: Georgia, serif;
    font-size: 28px;
}

.education-image-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
}

.education-section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--edu-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.education-intro-content h2,
.education-feature-content h2 {
    margin: 0 0 25px;

    color: var(--edu-navy);

    font-family: Georgia, serif;

    font-size: 46px;
    line-height: 1.12;
}

.education-intro-content h2 span,
.education-feature-content h2 span {
    display: block;
    color: var(--edu-gold);
}

.education-intro-content > p {
    margin-bottom: 18px;

    color: var(--edu-muted);

    font-size: 16px;
    line-height: 1.8;
}

.education-highlight {
    display: flex;
    gap: 18px;

    margin-top: 30px;
    padding: 22px;

    background: #faf8f2;

    border-left: 3px solid var(--edu-gold);
}

.education-highlight-icon {
    color: var(--edu-gold);
    font-size: 24px;
}

.education-highlight h3 {
    margin: 0 0 7px;

    color: var(--edu-navy);

    font-size: 17px;
}

.education-highlight p {
    margin: 0;

    color: var(--edu-muted);

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   PROGRAMMES
========================================= */

.education-programmes {
    padding: 105px 0;
    background: var(--edu-bg);
}

.education-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.education-heading > span {
    color: var(--edu-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.education-heading h2 {
    margin: 15px 0;

    color: var(--edu-navy);

    font-family: Georgia, serif;

    font-size: 45px;
    line-height: 1.15;
}

.education-heading h2 strong {
    color: var(--edu-gold);
    font-weight: 700;
}

.education-heading p {
    color: var(--edu-muted);

    font-size: 16px;
    line-height: 1.7;
}

.education-programme-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.education-programme-card {
    background: #fff;

    border: 1px solid #e8e8e8;

    transition: .35s ease;
}

.education-programme-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(4,29,58,.10);
}

.education-card-image {
    position: relative;
    overflow: hidden;
}

.education-card-image img {
    height: 215px;
    object-fit: cover;

    transition: transform .5s ease;
}

.education-programme-card:hover
.education-card-image img {
    transform: scale(1.04);
}

.education-card-image > span {
    position: absolute;

    top: 15px;
    left: 15px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--edu-gold);
    color: #fff;

    font-size: 11px;
    font-weight: 700;
}

.education-card-content {
    padding: 25px;
}

.education-card-label {
    color: var(--edu-gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.education-card-content h3 {
    margin: 13px 0;

    color: var(--edu-navy);

    font-family: Georgia, serif;

    font-size: 23px;
    line-height: 1.2;
}

.education-card-content h3 span {
    display: block;
    color: var(--edu-gold);
}

.education-card-content p {
    margin: 0;

    color: var(--edu-muted);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   FEATURE
========================================= */

.education-feature {
    padding: 110px 0;
    background: #fff;
}

.education-feature-box {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    background: var(--edu-dark);
}

.education-feature-image {
    min-height: 570px;
}

.education-feature-image img {
    height: 100%;
    object-fit: cover;
}

.education-feature-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.education-feature-content h2 {
    color: #fff;
}

.education-feature-content > p {
    color: #cbd5df;

    font-size: 15px;
    line-height: 1.8;
}

.education-feature-points {
    margin-top: 20px;
}

.education-feature-points > div {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 12px;
}

.education-feature-points span {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--edu-gold);
    color: #fff;

    font-size: 12px;
}

.education-feature-points p {
    margin: 0;

    color: #e5eaf0;

    font-size: 14px;
}


/* =========================================
   IMPACT
========================================= */

.education-impact {
    padding: 90px 0;

    background: #faf8f2;
}

.education-impact .education-container {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.education-impact-content > span {
    color: var(--edu-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.education-impact-content h2 {
    margin: 15px 0 20px;

    color: var(--edu-navy);

    font-family: Georgia, serif;

    font-size: 45px;
}

.education-impact-content h2 strong {
    display: block;
    color: var(--edu-gold);
}

.education-impact-content p {
    max-width: 520px;

    color: var(--edu-muted);

    font-size: 16px;
    line-height: 1.8;
}

.education-impact-image img {
    height: 360px;
    object-fit: cover;
    border-radius: 4px;
}


/* =========================================
   CTA
========================================= */

.education-cta {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,29,56,.96),
            rgba(3,29,56,.80)
        ),
        url("images/education-cta.jpg")
        center / cover no-repeat;
}

.education-cta-content {
    max-width: 720px;
    text-align: center;
    margin: auto;
}

.education-cta-content > span {
    color: var(--edu-light-gold);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.education-cta h2 {
    margin: 17px 0;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 46px;
}

.education-cta h2 strong {
    color: var(--edu-light-gold);
}

.education-cta p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #dce5ee;

    font-size: 15px;
    line-height: 1.8;
}

.education-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 16px 27px;

    background: var(--edu-gold);
    color: #fff;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.education-cta-btn:hover {
    background: #fff;
    color: var(--edu-navy);
    transform: translateY(-2px);
}

.education-cta-btn span {
    font-size: 19px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .education-programme-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .education-intro-grid,
    .education-feature-box,
    .education-impact .education-container {
        grid-template-columns: 1fr;
    }

    .education-intro-image img {
        height: 480px;
    }

    .education-feature-image {
        min-height: 400px;
    }

    .education-feature-content {
        padding: 55px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .education-hero {
        min-height: 600px;
    }

    .education-hero-content {
        padding: 80px 0;
    }

    .education-hero h1 {
        font-size: 43px;
    }

    .education-hero p {
        font-size: 15px;
    }

    .education-primary-btn,
    .education-outline-btn {
        width: 100%;
        justify-content: center;
    }

    .education-intro,
    .education-programmes,
    .education-feature {
        padding: 75px 0;
    }

    .education-intro-grid {
        gap: 45px;
    }

    .education-intro-image img {
        height: 380px;
    }

    .education-image-badge {
        right: 15px;
        bottom: 20px;
    }

    .education-intro-content h2,
    .education-heading h2,
    .education-feature-content h2,
    .education-impact-content h2,
    .education-cta h2 {
        font-size: 35px;
    }

    .education-programme-grid {
        grid-template-columns: 1fr;
    }

    .education-feature-content {
        padding: 40px 25px;
    }

    .education-feature-image {
        min-height: 300px;
    }

    .education-impact {
        padding: 70px 0;
    }

    .education-impact .education-container {
        gap: 35px;
    }

    .education-impact-image img {
        height: 280px;
    }

    .education-cta {
        padding: 75px 0;
    }

}

/* =========================================
   STRATEGIC ALLIANCES PAGE
========================================= */

.alliances-page {

    --alliance-navy: #062a52;
    --alliance-dark: #031d38;
    --alliance-gold: #c99a3d;
    --alliance-light-gold: #e3bd69;

    --alliance-white: #ffffff;
    --alliance-bg: #f7f8fa;

    --alliance-text: #26364a;
    --alliance-muted: #6b7785;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--alliance-text);
    background: #fff;
}

.alliances-page * {
    box-sizing: border-box;
}

.alliances-page img {
    width: 100%;
    display: block;
}

.alliances-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================
   HERO
========================================= */

.alliances-hero {

    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    background:
        url("images/s1.jfif")
        center / cover no-repeat;
}

.alliances-hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,29,56,.95) 0%,
            rgba(3,29,56,.73) 45%,
            rgba(3,29,56,.20) 100%
        );
}

.alliances-hero-content {

    position: relative;
    z-index: 2;

    max-width: 780px;

    padding: 100px 0;
}

.alliances-eyebrow {

    display: inline-block;

    margin-bottom: 22px;

    color: var(--alliance-light-gold);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.alliances-hero h1 {

    margin: 0 0 25px;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.05;
}

.alliances-hero h1 span {

    display: block;

    color: var(--alliance-light-gold);
}

.alliances-hero p {

    max-width: 680px;

    margin: 0 0 35px;

    color: #e8edf3;

    font-size: 17px;

    line-height: 1.8;
}

.alliances-hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.alliances-primary-btn,
.alliances-outline-btn {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 15px 25px;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}

.alliances-primary-btn {

    background: var(--alliance-gold);

    color: #fff;
}

.alliances-primary-btn span {

    font-size: 19px;

    transition: transform .3s ease;
}

.alliances-primary-btn:hover {

    background: #fff;

    color: var(--alliance-navy);

    transform: translateY(-2px);
}

.alliances-primary-btn:hover span {

    transform: translateX(4px);
}

.alliances-outline-btn {

    border: 1px solid rgba(255,255,255,.7);

    color: #fff;
}

.alliances-outline-btn:hover {

    background: #fff;

    color: var(--alliance-navy);
}


/* =========================================
   INTRO
========================================= */

.alliances-intro {

    padding: 110px 0;

    background: #fff;
}

.alliances-intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.alliances-intro-image {

    position: relative;
}

.alliances-intro-image img {

    height: 540px;

    object-fit: cover;

    border-radius: 4px;
}

.alliances-image-badge {

    position: absolute;

    right: -25px;
    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 25px;

    background: var(--alliance-gold);

    color: #fff;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.15);
}

.alliances-image-badge strong {

    font-family: Georgia, serif;

    font-size: 28px;
}

.alliances-image-badge span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    line-height: 1.5;
}

.alliances-section-label {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--alliance-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.alliances-intro-content h2,
.alliances-process-content h2 {

    margin: 0 0 25px;

    color: var(--alliance-navy);

    font-family: Georgia, serif;

    font-size: 46px;

    line-height: 1.12;
}

.alliances-intro-content h2 span,
.alliances-process-content h2 span {

    display: block;

    color: var(--alliance-gold);
}

.alliances-intro-content > p {

    margin-bottom: 18px;

    color: var(--alliance-muted);

    font-size: 16px;

    line-height: 1.8;
}

.alliances-highlight {

    display: flex;

    gap: 18px;

    margin-top: 30px;

    padding: 22px;

    background: #faf8f2;

    border-left: 3px solid var(--alliance-gold);
}

.alliances-highlight-icon {

    color: var(--alliance-gold);

    font-size: 24px;
}

.alliances-highlight h3 {

    margin: 0 0 7px;

    color: var(--alliance-navy);

    font-size: 17px;
}

.alliances-highlight p {

    margin: 0;

    color: var(--alliance-muted);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   PARTNERSHIP AREAS
========================================= */

.alliances-areas {

    padding: 105px 0;

    background: var(--alliance-bg);
}

.alliances-heading {

    max-width: 720px;

    margin-bottom: 55px;
}

.alliances-heading > span {

    color: var(--alliance-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.alliances-heading h2 {

    margin: 15px 0;

    color: var(--alliance-navy);

    font-family: Georgia, serif;

    font-size: 45px;

    line-height: 1.15;
}

.alliances-heading h2 strong {

    color: var(--alliance-gold);
}

.alliances-heading p {

    color: var(--alliance-muted);

    font-size: 16px;

    line-height: 1.7;
}

.alliances-card-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.alliances-card {

    background: #fff;

    border: 1px solid #e8e8e8;

    transition: .35s ease;
}

.alliances-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px
        rgba(4,29,58,.10);
}

.alliances-card-image {

    position: relative;

    overflow: hidden;
}

.alliances-card-image img {

    height: 215px;

    object-fit: cover;

    transition: transform .5s ease;
}

.alliances-card:hover
.alliances-card-image img {

    transform: scale(1.04);
}

.alliances-card-image > span {

    position: absolute;

    top: 15px;
    left: 15px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--alliance-gold);

    color: #fff;

    font-size: 11px;

    font-weight: 700;
}

.alliances-card-content {

    padding: 25px;
}

.alliances-card-label {

    color: var(--alliance-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.alliances-card-content h3 {

    margin: 13px 0;

    color: var(--alliance-navy);

    font-family: Georgia, serif;

    font-size: 23px;

    line-height: 1.2;
}

.alliances-card-content h3 span {

    display: block;

    color: var(--alliance-gold);
}

.alliances-card-content p {

    margin: 0;

    color: var(--alliance-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   PROCESS
========================================= */

.alliances-process {

    padding: 110px 0;

    background: #fff;
}

.alliances-process-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.alliances-process-content > p {

    max-width: 570px;

    color: var(--alliance-muted);

    font-size: 16px;

    line-height: 1.8;
}

.alliances-process-list {

    margin-top: 35px;
}

.alliances-process-item {

    display: flex;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #e8e8e8;
}

.alliances-process-item > span {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #faf8f2;

    color: var(--alliance-gold);

    font-size: 11px;

    font-weight: 700;
}

.alliances-process-item h3 {

    margin: 0 0 6px;

    color: var(--alliance-navy);

    font-size: 17px;
}

.alliances-process-item p {

    margin: 0;

    color: var(--alliance-muted);

    font-size: 13px;

    line-height: 1.6;
}

.alliances-process-image {

    position: relative;
}

.alliances-process-image > img {

    height: 560px;

    object-fit: cover;

    border-radius: 4px;
}

.alliances-process-quote {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 22px;

    background: rgba(3,29,56,.92);

    color: #fff;

    border-left: 3px solid var(--alliance-gold);
}

.alliances-process-quote > span {

    color: var(--alliance-light-gold);

    font-family: Georgia, serif;

    font-size: 35px;

    line-height: .5;
}

.alliances-process-quote p {

    margin: 8px 0 0;

    font-family: Georgia, serif;

    font-size: 16px;

    line-height: 1.5;
}


/* =========================================
   IMPACT
========================================= */

.alliances-impact {

    padding: 90px 0;

    background: #faf8f2;
}

.alliances-impact .alliances-container {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.alliances-impact-content > span {

    color: var(--alliance-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.alliances-impact-content h2 {

    margin: 15px 0 20px;

    color: var(--alliance-navy);

    font-family: Georgia, serif;

    font-size: 45px;
}

.alliances-impact-content h2 strong {

    display: block;

    color: var(--alliance-gold);
}

.alliances-impact-content p {

    max-width: 520px;

    color: var(--alliance-muted);

    font-size: 16px;

    line-height: 1.8;
}

.alliances-impact-image img {

    height: 360px;

    object-fit: cover;

    border-radius: 4px;
}


/* =========================================
   CTA
========================================= */

.alliances-cta {

    padding: 100px 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,29,56,.96),
            rgba(3,29,56,.82)
        ),
        url("images/alliances-cta.jpg")
        center / cover no-repeat;
}

.alliances-cta-content {

    max-width: 760px;

    margin: auto;

    text-align: center;
}

.alliances-cta-content > span {

    color: var(--alliance-light-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.alliances-cta h2 {

    margin: 17px 0;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 46px;
}

.alliances-cta h2 strong {

    color: var(--alliance-light-gold);
}

.alliances-cta p {

    max-width: 650px;

    margin: 0 auto 30px;

    color: #dce5ee;

    font-size: 15px;

    line-height: 1.8;
}

.alliances-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 16px 27px;

    background: var(--alliance-gold);

    color: #fff;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

    transition: .3s ease;
}

.alliances-cta-btn:hover {

    background: #fff;

    color: var(--alliance-navy);

    transform: translateY(-2px);
}

.alliances-cta-btn span {

    font-size: 19px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .alliances-card-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .alliances-intro-grid,
    .alliances-process-grid,
    .alliances-impact .alliances-container {

        grid-template-columns: 1fr;
    }

    .alliances-intro-image img {

        height: 480px;
    }

    .alliances-process-image img {

        height: 450px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .alliances-hero {

        min-height: 600px;
    }

    .alliances-hero-content {

        padding: 80px 0;
    }

    .alliances-hero h1 {

        font-size: 43px;
    }

    .alliances-hero p {

        font-size: 15px;
    }

    .alliances-primary-btn,
    .alliances-outline-btn {

        width: 100%;

        justify-content: center;
    }

    .alliances-intro,
    .alliances-areas,
    .alliances-process {

        padding: 75px 0;
    }

    .alliances-intro-grid,
    .alliances-process-grid {

        gap: 45px;
    }

    .alliances-intro-image img {

        height: 380px;
    }

    .alliances-image-badge {

        right: 15px;
        bottom: 20px;
    }

    .alliances-intro-content h2,
    .alliances-heading h2,
    .alliances-process-content h2,
    .alliances-impact-content h2,
    .alliances-cta h2 {

        font-size: 35px;
    }

    .alliances-card-grid {

        grid-template-columns: 1fr;
    }

    .alliances-process-image img {

        height: 350px;
    }

    .alliances-impact {

        padding: 70px 0;
    }

    .alliances-impact .alliances-container {

        gap: 35px;
    }

    .alliances-impact-image img {

        height: 280px;
    }

    .alliances-cta {

        padding: 75px 0;
    }

}


