.benefits-section {
    padding: 80rem 0;
}

.benefits-section__row {
    gap: 73rem 0;
}

.benefits-section__content {
    width: 100%;
    background-color: var(--green-100-color);
    border-radius: 30rem;
    padding: 26rem;
}

.benefits-section__title {
    max-width: 200rem;
}

.benefits-section__button:not(:first-child) {
    margin-top: 18rem;
}

@media screen and (min-width: 768px) {
    .benefits-section__row > *:nth-child(1) {
        display: flex;
    }

    .benefits-section__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .benefits-section {
        padding: 140rem 0;
    }

    .benefits-section__content {
        padding: 24rem;
    }

    .benefits-section__row > *:nth-child(2) {
        padding-left: 52rem;
    }
}