.foundation-help-section {
    position: relative;
    padding: 100px 5%;
    background: center/cover no-repeat;
}

.foundation-help-section__filter-bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    opacity: 0.5;
    background: var(--green-gradient);
}

.foundation-help-section__content-wrapper {
    max-width: 1440px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.foundation-help-section__title, .foundation-help-section__text {
    z-index: 2;
    color: var(--white);
}

.foundation-help-section__title {
    width: calc(30% - 12px);
    min-width: 325px;
}

.foundation-help-section__text {
    width: calc(50% - 12px);
    min-width: 510px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .foundation-help-section__content-wrapper {
        justify-content: flex-start;
    }

    .foundation-help-section__title, .foundation-help-section__text {
        width: 100%;
        min-width: 310px;
    }
}
