:root {
            --primary-blue: #1a3a6c;
            --accent-gold: #d4af37;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #152b52;
            border-color: #152b52;
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .icon-box {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: var(--shadow);
            height: 100%;
            transition: transform 0.3s ease;
        }
        .card:hover {
            transform: translateY(-8px);
        }
        .card-img-top {
            border-radius: 12px 12px 0 0;
            height: 220px;
            object-fit: cover;
        }
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 0.5rem 0;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            margin: 0 0.5rem;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
        }
        footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .friendlink a.flink {
            display: inline-block;
            background: white;
            color: var(--primary-blue);
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            border: 1px solid #ddd;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .friendlink a.flink:hover {
            background: var(--accent-gold);
            color: white;
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }
        .contact-info li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }
        .contact-info i {
            color: var(--accent-gold);
            margin-right: 0.75rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--accent-gold);
            margin-left: 1rem;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.35rem;
            top: 0.5rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--accent-gold);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--accent-gold);
        }
        .map-container iframe {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 58, 108, 0.05);
            color: var(--primary-blue);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(26, 58, 108, 0.25);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
