:root {
            --primary-blue: #0056b3;
            --secondary-teal: #20c997;
            --accent-gold: #ffc107;
            --dark-gray: #343a40;
            --light-gray: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--secondary-teal) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 84, 180, 0.85), rgba(32, 201, 151, 0.8)), url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .section-title {
            color: var(--primary-blue);
            border-bottom: 3px solid var(--accent-gold);
            display: inline-block;
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--secondary-teal);
            border-color: var(--secondary-teal);
            transform: scale(1.05);
        }
        .flink {
            display: inline-block;
            background: var(--light-gray);
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        footer a {
            color: var(--secondary-teal);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--accent-gold);
        }
        .social-icons a {
            font-size: 1.5rem;
            margin: 0 0.75rem;
            color: white;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-icons a:hover {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .responsive-iframe {
            width: 100%;
            height: 400px;
            border: 0;
            border-radius: 15px;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .responsive-iframe {
                height: 300px;
            }
            .navbar-nav {
                text-align: center;
            }
        }
        .stats-box {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .stats-box:hover {
            transform: scale(1.05);
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stats-box i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .stats-box h3 {
            color: var(--secondary-teal);
            font-weight: 700;
        }
        .contact-info li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .contact-info i {
            color: var(--primary-blue);
            width: 30px;
        }
