:root {
            --primary-green: #2a5c3d;
            --secondary-gold: #d4af37;
            --light-beige: #f5f1e8;
            --dark-charcoal: #333333;
            --accent-teal: #3a9b94;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-charcoal);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Georgia', serif;
            font-weight: 600;
            color: var(--primary-green);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-charcoal) !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-gold) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(42, 92, 61, 0.85), rgba(42, 92, 61, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0;
        }
        .hero-section h1 {
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .btn-primary {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: var(--accent-teal);
            border-color: var(--accent-teal);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(58, 155, 148, 0.3);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-green);
        }
        footer {
            background-color: var(--primary-green);
            color: var(--light-beige);
        }
        footer a {
            color: var(--light-beige);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--secondary-gold);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--secondary-gold);
            color: var(--primary-green);
            transform: translateY(-3px);
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background-color: var(--light-beige);
            border-radius: 8px;
            color: var(--primary-green);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background-color: var(--primary-green);
            color: white;
            transform: scale(1.05);
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 3rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-green);
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--accent-teal);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .testimonial-card {
            background-color: white;
            border-left: 5px solid var(--secondary-gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(42, 92, 61, 0.05);
            color: var(--primary-green);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(42, 92, 61, 0.25);
        }
        .form-control:focus {
            border-color: var(--accent-teal);
            box-shadow: 0 0 0 0.25rem rgba(58, 155, 148, 0.25);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
            }
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2.8rem;
            }
        }
