.impact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 30px;
    gap: 20px 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--green);
    color: var(--white);
    margin: 50px 0 80px;
    padding: 48px 50px;
}

.impact-text p {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.impact-stats {
    width: 50%;
    display: flex;
    justify-content: space-between;
    gap: 20px 30px;
}

.stat h2 {
    line-height: 30px;
    color: var(--parrot);
}

.impact-text {
    width: 46%;
}

.stat span {
    display: block;
    margin-top: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

@media (max-width: 991px) {
    .impact-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        margin: 50px 0 60px;
        border-radius: 15px;
    }
    .impact-text {
        width: 100%;
    }
    .impact-stats {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .impact-wrapper {
        padding: 15px;
        margin: 40px 0;
        border-radius: 10px;
    }
    .stat span {
        margin-top: 10px;
        font-size: 12px;
    }
    .impact-text p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .stat {
        flex: 0 0 43%;
    }
}