:root {
            --primary: #2c5f2d;
            --secondary: #ffb400;
            --accent: #004e89;
            --light: #f8f9fa;
            --dark: #343a40;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #333;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 95, 45, 0.85), rgba(0, 78, 137, 0.8)), url('https://images.unsplash.com/photo-1545569341-9eb8b30979d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .flink {
            background: var(--light);
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        .flink:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: var(--primary);
            color: var(--primary);
        }
        .flink-logo {
            width: 40px;
            height: 40px;
            margin-right: 15px;
            border-radius: 6px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .btn-primary-custom {
            background: var(--primary);
            border-color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary-custom:hover {
            background: #1e421f;
            border-color: #1e421f;
        }
        .footer {
            background: #1a331a;
            color: rgba(255,255,255,0.8);
        }
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(44, 95, 45, 0.1);
            color: var(--primary);
        }
        .donate-btn {
            background: linear-gradient(45deg, #ffb400, #ff9500);
            border: none;
            font-weight: 700;
            padding: 0.75rem 2.5rem;
            border-radius: 50px;
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 8px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
