.section-future-plans {
    margin: 100px 0;
}

.future-plans-block {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    background: #E4EDEB;
    border-radius: 10px;
    min-height: 535px;
}

.future-plans-image {
    display: flex;
    max-width: 100%;
    width: 100%;
}

.future-plans-image img {
    display: flex;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.future-plans-image-mobile {
    display: none;
}

.future-plans-content {
    max-width: 48%;
    width: 100%;
    padding: 50px 70px 50px 0;
}

.future-plans-content h2 {
    margin-bottom: 22px;
    text-transform: uppercase;
}

.future-plans-content-text {
    margin-bottom: 42px;
    font-size: 18px;
    line-height: 145%;
}

.future-plans-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.future-plan-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-icon {
    margin-right: 10px;
}

.check-icon svg {
    width: 24px;
    height: 24px;
}

.future-plan-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .section-future-plans {
        margin: 52px 0 0;
    }
    .section-future-plans .container {
        padding: 0;
    }
    .future-plans-block {
        flex-direction: column-reverse;
        gap: 10px;
        border-radius: 0;
    }
    .future-plans-content {
        max-width: 100%;
        width: 100%;
        padding: 20px 16px 0 16px;
    }
    .future-plans-image {
        display: none;
    }
    .future-plans-image-mobile {
        display: flex;
    }
    .future-plans-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 50% 50% 0 0;
    }
    .future-plans-content h2 {
        margin-bottom: 22px;
        text-transform: uppercase;
        text-align: center;
        margin-top: 22px;
    }
    .future-plans-content-text {
        margin-bottom: 40px;
        font-size: 14px;
        line-height: 160%;
        text-align: center;
    }
}
