.statistics-section {
    padding: 20px;
    text-align: center;
    position: relative;
    background-color: #e4fae5;
}

.statistics-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.statistics-section h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.statistics-section h2::before {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #2c3e50;
    margin: 10px auto;
    border-radius: 5px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 48px;
    color: #254336;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #254336;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #333;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .statistics-section {
        padding: 10px;
    }

    .statistics-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .statistics-section h2::before {
        width: 60px;
        height: 4px;
    }

    .statistics-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-icon {
        font-size: 36px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 5px;
    }

    .statistics-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .statistics-section h2::before {
        width: 50px;
        height: 3px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-icon {
        font-size: 30px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }
}
