/* Current Statistics Section */
.current-statistics,
.impact-statistics {
    background-color: #f9f9f9;
    padding: 20px 8px;
    text-align: center;
}

.current-statistics h2,
.impact-statistics h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 28px;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: #555;
}

/* Responsive Styles */
@media(max-width: 860px) {

    .current-statistics h2,
    .impact-statistics h2 {
        font-size: 28px;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        margin: 10px 0;
    }

    .stat-item h3 {
        font-size: 25px;
    }

    .stat-item p {
        font-size: 16px;
    }
}