.banner-section {
    min-height: 100dvh;
    padding: 130px 0 40px;
    background: #F0E9D8;
}

.banner-section .container {
    display: flex;
    align-items: center;
}

.banner-section .container .section-item {
    width: 50%;
}

.banner-section .container .section-item.text-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.banner-section .container .section-item.text-section p {
    font-size: clamp(14px, 1.25vw, 18px);
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .banner-section {
        padding: 150px 0 60px;
    }

    .banner-section .container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .banner-section .container .section-item {
        width: 100%;
    }

    .banner-section .container .section-item img {
        width: 75%;
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .section {
        padding: 80px 0;
    }

    .banner-section {
        padding: 170px 0 80px;
    }

    .banner-section .container .section-item img {
        width: 85%;
    }
}