:root {
            --primary-green: #1e7e34;
            --secondary-gold: #ffd700;
            --dark-bg: #0a290a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s;
        }
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 41, 10, 0.85), rgba(30, 126, 52, 0.9)), url('https://images.unsplash.com/photo-1551958219-acbc608c6377?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-green);
        }
        .feature-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(30, 126, 52, 0.15);
        }
        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-green), #2ecc71);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .stats-counter {
            background: linear-gradient(135deg, var(--dark-bg), var(--primary-green));
            color: white;
            padding: 4rem 0;
        }
        .counter-item h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            margin: 5px;
            background: #f1f8e9;
            border-radius: 30px;
            color: var(--primary-green);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #c8e6c9;
        }
        .flink:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding-top: 3rem;
        }
        .footer a {
            color: #a5d6a7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-gold);
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--primary-green), #27ae60);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 126, 52, 0.3);
        }
        .hover-shadow {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .hover-shadow:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 0;
                min-height: 70vh;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .counter-item h3 {
                font-size: 2.2rem;
            }
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-section h4 {
            color: var(--primary-green);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
