:root {
            --primary: #2a6e3f;
            --secondary: #e9b44a;
            --light: #f8f9fa;
            --dark: #343a40;
            --success: #28a745;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #444;
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary);
            font-weight: 700;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding-top: 0.8rem;
            padding-bottom: 0.8rem;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #1e4f2d;
            border-color: #1e4f2d;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: #333;
            padding: 0.8rem 2rem;
            font-weight: 600;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .icon-box {
            background-color: #f0f7f2;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 2rem;
            transition: transform 0.3s;
        }
        .feature-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }
        .card {
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .stats-box {
            background-color: var(--primary);
            color: white;
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 2rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
        }
        footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding-top: 4rem;
        }
        footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }
        footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .footer-bottom {
            background-color: #111;
            padding: 1.5rem 0;
            margin-top: 3rem;
            border-top: 1px solid #333;
        }
        .friendlink {
            background-color: #f9f9f9;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 1rem 2rem;
            margin: 0.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            color: #555;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        .flink:hover {
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: #e0e0e0;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2.35rem;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--primary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(42, 110, 63, 0.1);
            color: var(--primary);
            font-weight: 600;
        }
        .form-control, .form-select {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(42, 110, 63, 0.25);
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 5rem 0;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
