:root {
            --light-green: #28a745;
            --bg-light: #fff;
            --text-dark: #000;
            --primary-green: #1e4d3b;
            --secondary-green: #28a745;
            --accent-green: #28a745;
            --dark-green: #1e4d3b;
            --text-light: #fff;
            --text-muted: #1e4d3b;
            --border-color: #28a745;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #000;
            background: #fff;
        }

        .navbar {
            background: #000;
            box-shadow: 0 2px 10px #1e4d3b22;
        }
        
        .tab-nav {
            border-bottom: 3px solid var(--primary-green);
            margin-bottom: 30px;
        }

        .nav-link {
            color: var(--primary-green);
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 0;
            transition: all 0.3s ease;
        }

        .nav-link.active {
            background: var(--primary-green);
            color: #fff;
        }

        .nav-link:hover {
            background: #000;
            color: var(--secondary-green);
            border-radius: 10px;
        }
        
        .section-header {
            position: relative;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--primary-green);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            border: none;
            border-radius: 2px;
            margin: 0 auto;
            opacity: 1;
        }

        .objectives-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .objective-card {
            background: #ffffff;
            border: none;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(30, 77, 59, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .objective-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-green), var(--accent-green));
        }

        .objective-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 48px rgba(30, 77, 59, 0.15);
        }

        .objective-content {
            padding: 2rem 2rem 2rem 2.5rem;
        }

        .objective-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 16px rgba(30, 77, 59, 0.2);
        }

        .objective-icon i {
            font-size: 1.25rem;
            color: white;
        }

        .objective-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .objective-description {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .stats-section {
            background:rgba(172, 172, 172, 0.582);
            border-radius: 16px;
            padding: 2.5rem;
            margin-top: 3rem;
            text-align: center;
        }

        .stats-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .stats-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.6;
        }
         
         /* Contact Section */
        .contact-section {
            padding: 100px 0;
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
        }

        .section-header {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: var(--primary-green);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            border: none;
            border-radius: 2px;
            margin: 0 auto 3rem;
            opacity: 1;
        }

        .contact-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 40px rgba(30, 77, 59, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(30, 77, 59, 0.05);
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(30, 77, 59, 0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 24px rgba(30, 77, 59, 0.2);
            position: relative;
            overflow: hidden;
        }

        .contact-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .contact-card:hover .contact-icon::before {
            animation: shimmer 1.2s ease-in-out;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .contact-icon i {
            font-size: 2rem;
            color: white;
            z-index: 2;
            position: relative;
        }

        .contact-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        .contact-info {
            color: #5a6c7d;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .newsletter-content {
            position: relative;
            z-index: 2;
        }

        .newsletter-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .newsletter-subtitle {
            color: var(--text-muted);
            font-size: 1.125rem;
            margin-bottom: 0;
        }

        .newsletter-form {
            max-width: 400px;
            margin-left: auto;
        }

        .newsletter-form .form-control {
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border-radius: 12px;
            padding: 0.875rem 1.25rem;
            font-size: 1rem;
            -webkit-backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form .form-control:focus {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            background: var(--text-light);
            color: var(--primary-green);
            border: none;
            border-radius: 12px;
            padding: 0.875rem 2rem;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        /* Footer Section */
        .footer-section {
            background: linear-gradient(135deg, var(--dark-green) 0%, #0a1f1a 100%);
            color: var(--text-light);
            padding: 80px 0 30px;
            position: relative;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        .footer-brand {
            margin-bottom: 2rem;
        }

        .footer-brand h5 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }

        .footer-brand h6 {
            font-size: 1rem;
            color: var(--accent-green);
            font-weight: 500;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .footer-description {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: var(--accent-green);
            color: var(--text-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(58, 133, 99, 0.3);
        }

        .footer-section h5 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--accent-green);
            border-radius: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 1rem;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background: var(--accent-green);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--text-light);
            padding-left: 1.5rem;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.25rem;
            }
            
            .objective-content {
                padding: 1.5rem;
            }
            
            .stats-section {
                padding: 2rem 1.5rem;
            }
            .section-title {
                font-size: 2.25rem;
            }
            
            .contact-card {
                padding: 2rem 1.5rem;
                margin-bottom: 2rem;
            }
            
            .newsletter-form {
                margin-left: 0;
                margin-top: 1.5rem;
            }
            
            .footer-section {
                padding: 60px 0 30px;
            }
            
            .social-links {
                justify-content: center;
                margin-top: 1.5rem;
            }
        }