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

        :root {
            --text: #111827;
            --muted: #4b5563;
            --muted-light: #6b7280;
            --blue: #006bb6;
            --blue-dark: #004f9e;
            --blue-soft: #edf6ff;
            --gold: #c58b1c;
            --red: #db1818;
            --white: #ffffff;
            --surface: #f7f8fa;
            --surface-blue: #edf3f8;
            --border: rgba(17, 24, 39, 0.11);
            --blue-border: rgba(0, 79, 158, 0.18);
            --shadow-sm: 0 8px 22px rgba(17, 24, 39, 0.07);
            --shadow-md: 0 16px 38px rgba(17, 24, 39, 0.11);
            --shadow-lg: 0 24px 60px rgba(17, 24, 39, 0.16);
            --radius: 22px;
            --transition: all 0.28s ease;
            --container: 1220px;
            --container-padding: clamp(1rem, 4vw, 2rem);
            --section: clamp(3.5rem, 7vw, 6rem);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--surface);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        section {
            padding: var(--section) 0;
        }

        h1, h2, h3, h4 {
            color: var(--text);
            line-height: 1.12;
            letter-spacing: -0.035em;
        }

        h1 {
            font-size: clamp(2.4rem, 5.8vw, 5rem);
            font-weight: 800;
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800;
        }

        h3 {
            font-size: clamp(1.15rem, 2vw, 1.45rem);
            font-weight: 800;
        }

        p {
            color: var(--muted);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.85rem;
            border-radius: 999px;
            color: var(--blue-dark);
            background: rgba(0, 107, 182, 0.1);
            border: 1px solid rgba(0, 107, 182, 0.17);
            font-weight: 800;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .section-header {
            max-width: 820px;
            margin: 0 auto clamp(2rem, 5vw, 3.5rem);
            text-align: center;
        }

        .section-header h2 {
            margin: 1rem 0;
        }

        .section-header p {
            font-size: clamp(1rem, 1.6vw, 1.16rem);
        }

        .grid-2,
        .grid-3,
        .grid-4 {
            display: grid;
            gap: clamp(1rem, 2.5vw, 1.7rem);
        }

        .grid-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .grid-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .grid-4 {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        /* HEADER */
        .header {
            background: #ffffff;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(17, 24, 39, 0.09);
            box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
            padding: 0.55rem 0;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .logo img {
            height: 56px;
            width: auto;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: clamp(0.35rem, 1.2vw, 1rem);
            align-items: center;
        }

        .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 0.55rem;
            color: #004b87;
            text-decoration: none;
            font-weight: 800;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--transition);
        }

        .nav-link::after {
            content: "";
            position: absolute;
            left: 0.55rem;
            right: 0.55rem;
            bottom: 0.25rem;
            height: 2px;
            border-radius: 999px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .btn-don-nav {
            background: var(--red);
            color: var(--white) !important;
            border-radius: 999px;
            padding: 0 1rem;
            box-shadow: 0 10px 24px rgba(219, 24, 24, 0.22);
        }

        .btn-don-nav::after {
            display: none;
        }

        .btn-don-nav:hover {
            background: #b91c1c;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            width: 46px;
            height: 46px;
            border: 1px solid var(--border);
            background: #ffffff;
            border-radius: 14px;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }

        .hamburger span {
            width: 22px;
            height: 2px;
            background: var(--blue-dark);
            border-radius: 999px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .menu-overlay {
            display: none;
        }

        /* PAGE HERO */
        .page-hero {
            min-height: 58vh;
            margin-top: 74px;
            padding: clamp(4rem, 9vw, 7rem) 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background:
                linear-gradient(
                    90deg,
                    rgba(255,255,255,0.96) 0%,
                    rgba(255,255,255,0.9) 44%,
                    rgba(255,255,255,0.62) 68%,
                    rgba(255,255,255,0.32) 100%
                ),
                none center/cover no-repeat;
            border-bottom: 1px solid rgba(0, 107, 182, 0.12);
        }

        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(0, 107, 182, 0.1), transparent 45%),
                radial-gradient(circle at 88% 20%, rgba(0, 107, 182, 0.16), transparent 34%);
            pointer-events: none;
        }

        .page-hero::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 7px;
            background: linear-gradient(180deg, var(--blue), var(--gold));
        }

        .page-hero .container {
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            display: flex;
            gap: 0.6rem;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 1.3rem;
            color: var(--muted);
            font-size: 0.94rem;
            font-weight: 700;
        }

        .breadcrumb a {
            color: var(--blue-dark);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--gold);
        }

        .page-hero-content {
            max-width: 760px;
        }

        .page-hero h1 {
            margin: 1rem 0;
        }

        .page-hero p {
            max-width: 700px;
            font-size: clamp(1.04rem, 1.8vw, 1.22rem);
            color: #374151;
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            min-height: 50px;
            padding: 0.85rem 1.35rem;
            border-radius: 999px;
            font-weight: 800;
            text-decoration: none;
            border: 0;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn-primary {
            background: var(--blue);
            color: var(--white);
            box-shadow: 0 10px 22px rgba(0, 107, 182, 0.22);
        }

        .btn-primary:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: var(--white);
            color: var(--blue-dark);
            border: 1px solid var(--blue-border);
            box-shadow: var(--shadow-sm);
        }

        .btn-outline:hover {
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        /* CARDS / STATS */
        .card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            padding: clamp(1.4rem, 3vw, 2rem);
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: var(--blue-border);
            box-shadow: var(--shadow-md);
        }

        .stats-strip {
            padding-top: 2rem;
            padding-bottom: 0;
            position: relative;
            z-index: 5;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            background: #ffffff;
            border: 1px solid var(--blue-border);
            border-radius: 26px;
            padding: 1rem;
            box-shadow: var(--shadow-md);
        }

        .stat-item {
            padding: 1.4rem;
            border-radius: 18px;
            text-align: center;
            background: linear-gradient(180deg, #ffffff, #f1f5f9);
            border: 1px solid rgba(0, 79, 158, 0.13);
        }

        .stat-number {
            display: block;
            color: var(--blue-dark);
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 900;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--muted);
            font-weight: 800;
        }

        /* HISTORY */
        .history-section {
            background: var(--surface);
        }

        .history-layout {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
        }

        .timeline {
            position: relative;
            display: grid;
            gap: 1rem;
        }

        .timeline::before {
            content: "";
            position: absolute;
            top: 0.7rem;
            bottom: 0.7rem;
            left: 11px;
            width: 2px;
            background: rgba(0, 107, 182, 0.22);
        }

        .timeline-item {
            position: relative;
            padding-left: 2.4rem;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: 2px;
            top: 0.45rem;
            width: 18px;
            height: 18px;
            border-radius: 999px;
            background: var(--white);
            border: 5px solid var(--blue);
            box-shadow: 0 0 0 4px rgba(0, 107, 182, 0.08);
        }

        .timeline-card {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 1.2rem;
            box-shadow: var(--shadow-sm);
        }

        .timeline-date {
            color: var(--blue-dark);
            font-weight: 900;
            margin-bottom: 0.4rem;
        }

        .timeline-title {
            color: var(--text);
            font-weight: 900;
            margin-bottom: 0.35rem;
        }

        .history-image {
            position: relative;
            border-radius: 26px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--blue-border);
        }

        .history-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
        }

        .history-badge {
            position: absolute;
            left: 1rem;
            bottom: 1rem;
            max-width: 300px;
            padding: 1.1rem;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(255,255,255,0.7);
            box-shadow: var(--shadow-sm);
        }

        .history-badge strong {
            display: block;
            color: var(--blue-dark);
            font-size: 1.4rem;
            line-height: 1;
            margin-bottom: 0.4rem;
        }

        .history-badge span {
            color: var(--muted);
            font-weight: 700;
        }

        /* MISSION */
        .mission-section {
            background: var(--surface-blue);
        }

        .mission-vision {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.2rem;
        }

        .mission-card,
        .vision-card {
            background: #ffffff;
            border: 1px solid var(--blue-border);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            background: rgba(0, 107, 182, 0.12);
            color: var(--blue-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.45rem;
            margin-bottom: 1.1rem;
        }

        .mission-card h2,
        .vision-card h2 {
            margin-bottom: 1rem;
        }

        .mission-card ul {
            list-style: none;
            display: grid;
            gap: 0.9rem;
            margin-top: 1.2rem;
        }

        .mission-card li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            color: var(--muted);
            font-weight: 650;
        }

        .mission-card li i {
            color: var(--blue);
            margin-top: 0.22rem;
        }

        .vision-card p + p {
            margin-top: 1rem;
        }

        /* VALUES */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
        }

        .value-item {
            text-align: center;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.45rem 1rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .value-item:hover {
            transform: translateY(-5px);
            border-color: var(--blue-border);
            box-shadow: var(--shadow-md);
        }

        .value-item i {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 107, 182, 0.11);
            color: var(--blue-dark);
            margin-bottom: 0.9rem;
            font-size: 1.25rem;
        }

        .value-item h4 {
            margin-bottom: 0.4rem;
        }

        .value-item p {
            font-size: 0.92rem;
        }

        /* TEAM */
        .team-section {
            background: var(--surface-blue);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.2rem;
        }

        .team-member {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 1rem;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-5px);
            border-color: var(--blue-border);
            box-shadow: var(--shadow-md);
        }

        .team-member img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 18px;
            margin-bottom: 1rem;
        }

        .team-member h3 {
            margin-bottom: 0.3rem;
        }

        .team-member .role {
            color: var(--blue-dark);
            font-weight: 800;
            margin-bottom: 0.8rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 0.65rem;
        }

        .team-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--blue-soft);
            color: var(--blue-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .team-social a:hover {
            background: var(--blue);
            color: #ffffff;
        }

        /* PARTNERS / CTA */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 1rem;
            align-items: stretch;
        }

        .partner-logo {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 1.2rem;
            min-height: 88px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text);
            font-weight: 800;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .partner-logo:hover {
            border-color: var(--blue-border);
            transform: translateY(-4px);
        }

        .cta-section {
            background: #ffffff;
        }

        .cta-box {
            border-radius: 28px;
            padding: clamp(2rem, 5vw, 4rem);
            background:
                linear-gradient(90deg, rgba(0, 79, 158, 0.93), rgba(0, 107, 182, 0.86)),
                none center/cover no-repeat;
            color: #ffffff;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .cta-box h2,
        .cta-box p {
            color: #ffffff;
        }

        .cta-box p {
            max-width: 700px;
            margin: 1rem auto 2rem;
            color: rgba(255,255,255,0.86);
            font-size: 1.12rem;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.9rem;
        }

        .btn-white {
            background: #ffffff;
            color: var(--blue-dark);
        }

        .btn-white:hover {
            transform: translateY(-2px);
        }

        .btn-transparent {
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.65);
            background: rgba(255,255,255,0.1);
        }

        .btn-transparent:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-2px);
        }

        /* FOOTER */
        .footer {
            background: #003f7f;
            color: #ffffff;
            padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
            gap: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2.5rem;
        }

        .footer-logo img {
            height: 62px;
            margin-bottom: 1rem;
        }

        .footer p,
        .footer li {
            color: rgba(255,255,255,0.78);
        }

        .footer h4 {
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer ul {
            list-style: none;
            display: grid;
            gap: 0.7rem;
        }

        .footer a {
            color: rgba(255,255,255,0.82);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer a:hover {
            color: #ffffff;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.2rem;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
        }

        .social-links a:hover {
            background: #ffffff;
            color: var(--blue-dark);
            transform: translateY(-3px);
        }

        .newsletter-section {
            padding: 1.2rem;
            border-radius: 22px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.13);
            margin-bottom: 2rem;
        }

        .newsletter-inner {
            display: grid;
            grid-template-columns: 0.8fr 1fr;
            gap: 1.4rem;
            align-items: center;
        }

        .newsletter-form {
            display: flex;
            gap: 0.8rem;
        }

        .newsletter-input {
            flex: 1;
            min-height: 50px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.12);
            padding: 0 1rem;
            color: #ffffff;
            outline: none;
        }

        .newsletter-input::placeholder {
            color: rgba(255,255,255,0.62);
        }

        .newsletter-input:focus {
            border-color: #ffffff;
        }

        #newsletter-message {
            margin-top: 1rem;
        }

        .copyright {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.12);
            text-align: center;
        }

        .copyright p {
            font-size: 0.92rem;
        }

        /* ANIMATIONS */
        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* RESPONSIVE */
        @media (max-width: 1120px) {
            .team-grid,
            .values-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .partners-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 960px) {
            .hamburger {
                display: flex;
                position: relative;
                z-index: 1002;
            }

            .menu-overlay {
                position: fixed;
                inset: 0;
                z-index: 998;
                background: rgba(17, 24, 39, 0.55);
            }

            .menu-overlay.active {
                display: block;
            }

            .nav-list {
                position: fixed;
                top: 0;
                right: -110%;
                width: min(86vw, 420px);
                height: 100vh;
                z-index: 1001;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0.45rem;
                padding: 6.5rem 1.2rem 2rem;
                background: #ffffff;
                box-shadow: -25px 0 60px rgba(17, 24, 39, 0.18);
                transition: right 0.28s ease;
                overflow-y: auto;
            }

            .nav-list.active {
                right: 0;
            }

            .nav-link {
                width: 100%;
                min-height: 54px;
                padding: 0 1rem;
                border-radius: 16px;
                background: rgba(0, 107, 182, 0.06);
                font-size: 1rem;
            }

            .nav-link::after {
                display: none;
            }

            .btn-don-nav {
                justify-content: center;
            }

            .history-layout,
            .mission-vision,
            .grid-2 {
                grid-template-columns: 1fr;
            }

            .page-hero {
                min-height: auto;
            }

            .history-image img {
                height: 420px;
            }
        }

        @media (max-width: 680px) {
            .logo img {
                height: 46px;
            }

            .page-hero {
                margin-top: 66px;
                padding: 4.2rem 0;
                background:
                    linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.88)),
                    none center/cover no-repeat;
            }

            .stats-grid,
            .grid-3,
            .grid-4,
            .values-grid,
            .team-grid,
            .partners-grid,
            .footer-grid,
            .newsletter-inner {
                grid-template-columns: 1fr;
            }

            .history-image img {
                height: 340px;
            }

            .history-badge {
                position: relative;
                left: auto;
                bottom: auto;
                margin: -5.5rem 1rem 1rem;
            }

            .cta-actions,
            .newsletter-form {
                flex-direction: column;
            }

            .btn,
            .newsletter-input {
                width: 100%;
            }

            .footer {
                text-align: center;
            }

            .footer-logo img,
            .social-links {
                margin-left: auto;
                margin-right: auto;
                justify-content: center;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition: none !important;
            }

            .fade-in {
                opacity: 1;
                transform: none;
            }
        }
