:root {
            --primary-dark: #0a1f2d;
            --primary-gold: #d4af37;
            --primary-red: #c1272d;
            --accent-blue: #1a5f7a;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 31, 45, 0.85), rgba(10, 31, 45, 0.9)), url('https://images.unsplash.com/photo-1515168833906-d2a3b82baf42?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 6rem;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-gold) !important;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
        }
        .btn-gold {
            background-color: var(--primary-gold);
            color: var(--primary-dark);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 0.375rem;
            border: none;
            transition: all 0.3s;
        }
        .btn-gold:hover {
            background-color: #b8941f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            color: var(--primary-dark);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-gold);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.08);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary-dark);
            font-size: 1.8rem;
        }
        footer {
            background-color: var(--primary-dark);
            color: #ddd;
        }
        .footer-link {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--primary-gold);
        }
        .friendlink a.flink {
            background-color: rgba(255,255,255,0.05);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
            display: inline-block;
            margin: 0.25rem;
        }
        .friendlink a.flink:hover {
            background-color: rgba(212, 175, 55, 0.15);
            color: var(--primary-gold);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--primary-dark);
            font-weight: 600;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-gold);
            line-height: 1;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            font-size: 1.3rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 4rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
