:root {
            --primary-gold: #D4AF37;
            --secondary-navy: #1A2A44;
            --accent-teal: #2A9D8F;
            --light-gray: #F8F9FA;
            --dark-gray: #343A40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-gold) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 42, 68, 0.9), rgba(26, 42, 68, 0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            margin-top: 76px;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--secondary-navy);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        .btn-gold {
            background-color: var(--primary-gold);
            color: var(--secondary-navy);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 5px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #c19b2e;
            color: white;
            transform: translateY(-2px);
        }
        .footer {
            background-color: var(--secondary-navy);
            color: #ddd;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--primary-gold);
        }
        .friendlink a.flink {
            background: var(--light-gray);
            padding: 10px 20px;
            border-radius: 5px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
        }
        .friendlink a.flink:hover {
            background: var(--primary-gold);
            color: var(--secondary-navy);
            transform: scale(1.05);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-gold);
            line-height: 1;
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 40px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 12px;
            height: 12px;
            background: var(--primary-gold);
            border-radius: 50%;
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 5px;
            top: 20px;
            bottom: -40px;
            width: 2px;
            background: #ddd;
        }
        .timeline-item:last-child:after {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0;
                margin-top: 56px;
            }
            .stats-number {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
