:root {
            --primary-color: #1e40af;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --light-color: #f8fafc;
            --dark-color: #0f172a;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 64, 175, 0.9)), url('https://images.unsplash.com/photo-1575361204480-aadea25e6e68?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0 6rem;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .program-card {
            border-top: 5px solid var(--accent-color);
            height: 100%;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px 10px 5px 0;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--accent-color);
            transform: scale(1.05);
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #1e3a8a;
            border-color: #1e3a8a;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        .partners img {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
            max-height: 80px;
        }
        .partners img:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .news-card img {
            height: 220px;
            object-fit: cover;
        }
        .map-container iframe {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            border: 0;
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1020;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 7rem 0 3rem;
                min-height: auto;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .display-4 {
                font-size: 2.2rem;
            }
        }
