

        .article-hero {
            position: relative;
            padding: 58px 0;
            overflow: hidden;
        }

        .article-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
            z-index: 1;
        }

        .article-hero-content {
            position: relative;
            z-index: 2;
        }

        

        .forest-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            font-size: 48px;
            color: #4CAF50;
            margin-bottom: 15px;
            transition: transform 0.4s ease;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #2c5e2e;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        

        .forest-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: #e8f5e9;
            transform: translateX(5px);
        }

        .feature-icon {
            color: #4CAF50;
            font-size: 24px;
            flex-shrink: 0;
        }

        .impact-timeline {
            position: relative;
            padding: 60px 0;
        }

        .timeline-item {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-dot {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4CAF50, #8BC34A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
            z-index: 2;
        }

        .timeline-content {
            flex: 1;
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        }

        .interactive-cta {
            background: linear-gradient(135deg, #2c5e2e, #4CAF50);
            color: #fff;
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .interactive-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .cta-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .cta-text {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: #fff;
            color: #4CAF50;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: #2c5e2e;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .shape:nth-child(2) { top: 60%; left: 80%; animation-delay: 3s; }
        .shape:nth-child(3) { top: 80%; left: 20%; animation-delay: 6s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .quote-section {
            background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
            padding: 60px;
            border-radius: 20px;
            margin: 80px 0;
            text-align: center;
            position: relative;
        }

        .quote-icon {
            font-size: 64px;
            color: #4CAF50;
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .quote-text {
            font-size: 24px;
            font-style: italic;
            color: #2c5e2e;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-custom {
            margin: 60px 0;
        }

        .accordion-item-custom {
            background: #fff;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .accordion-item-custom:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .accordion-header-custom {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            transition: all 0.3s ease;
        }

        .accordion-header-custom:hover {
            background: #f8f9fa;
        }

        .accordion-title {
            font-size: 20px;
            font-weight: 600;
            color: #2c5e2e;
            margin: 0;
        }

        .accordion-icon {
            font-size: 24px;
            color: #4CAF50;
            transition: transform 0.3s ease;
        }

        .accordion-item-custom.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-body-custom {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .accordion-content {
            padding: 0 30px 30px;
            color: #666;
            line-height: 1.8;
        }

       

        .content-section {
            margin: 60px 0;
        }

        .content-section h2 {
            font-size: 36px;
            color: #2c5e2e;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
        }

        .content-section p {
            font-size: 16px;
            line-height: 1.9;
            color: #555;
            margin-bottom: 20px;
        }

        .highlight-box {
            background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
            border-left: 5px solid #4CAF50;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .image-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .image-card:hover {
            transform: scale(1.05);
        }

        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: #fff;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .image-card:hover .image-overlay {
            transform: translateY(0);
        }
        .padding{
            padding-left: 13px;
        }

        @media (max-width: 768px) {
            .forest-stats {
                grid-template-columns: 1fr;
            }

            .forest-features {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                flex-direction: column;
            }

            .cta-title {
                font-size: 28px;
            }

            .quote-text {
                font-size: 18px;
            }
            .padding{
            padding-left: 0px;
        }
        }
  