:root {
            --primary-blue: #0056a6;
            --secondary-green: #28a745;
            --accent-teal: #20c997;
            --dark-navy: #00264d;
            --light-gray: #f8f9fa;
            --text-dark: #333;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-teal) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 38, 77, 0.85), rgba(0, 86, 166, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            color: var(--dark-navy);
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-teal);
            bottom: -15px;
            left: 0;
            border-radius: 2px;
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        .feature-card:hover .icon-box {
            background: var(--primary-blue);
            color: white;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--dark-navy);
            border-color: var(--dark-navy);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-navy);
            color: white;
        }
        .flink {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            padding: 6px 0;
            display: inline-block;
        }
        .flink:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        .map-container iframe {
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 166, 0.1);
            color: var(--primary-blue);
        }
        .badge-custom {
            background: var(--accent-teal);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 500;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                min-height: 70vh;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stats-number {
                font-size: 2.2rem;
            }
        }
