/* Impact Section Styles */
.impact-section {
    padding-top: 60px;
    padding-bottom: 0;
    /* Image sits at the bottom */
    background-color: #e7f1fb;
    /* User specified color */
    font-family: 'Poppins', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-heading {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.impact-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 60px;
    /* Spacing before image */
    padding: 0 20px;
}

.impact-stat-item {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.stat-label-top {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff6600;
    /* Orange impact color */
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    /* Condensed bold font if available */
}

.stat-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

.impact-bottom-image-wrapper {
    width: 100%;
    margin-bottom: -5px;
    /* Removes any default inline-block gap */
}

.impact-bottom-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .impact-stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .impact-stat-item {
        margin-bottom: 40px;
        width: 100%;
    }

    .impact-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 42px;
    }
}