@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
        :root {
            --primary-blue: #0a2463;
            --secondary-blue: #1e40af;
            --accent-gold: #d4af37;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
        }
        body {
            font-family: 'Source Sans Pro', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.9) 0%, rgba(30, 64, 175, 0.85) 100%), url('https://images.unsplash.com/photo-1446776653964-20c1d3a81b06?ixlib=rb-4.0.3&auto=format&fit=crop&w=1471&q=80') center/cover no-repeat;
        }
        .card-hover {
            transition: all 0.3s ease;
            border-bottom: 4px solid transparent;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-bottom-color: var(--accent-gold);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: #f1f5f9;
            border-radius: 0.375rem;
            margin: 0.25rem;
            transition: all 0.2s;
            color: var(--primary-blue);
            border: 1px solid #cbd5e1;
        }
        .flink:hover {
            background-color: var(--secondary-blue);
            color: white;
            transform: scale(1.05);
        }
        .nav-link-hover {
            position: relative;
        }
        .nav-link-hover::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .nav-link-hover:hover::after {
            width: 100%;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--secondary-blue);
            margin-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--accent-gold);
            left: -10px;
            top: 0;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .footer-bg {
            background-color: #0f172a;
        }
        .mobile-menu {
            transition: max-height 0.5s ease;
            max-height: 0;
            overflow: hidden;
        }
        .mobile-menu.open {
            max-height: 500px;
        }
        @media (max-width: 768px) {
            .hero-gradient {
                background-position: 70% center;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
