.about-section {
    padding: 0 8vw;
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
    gap: 8vh;
}

.heading_H3 {
    font-size: 3.5vw;
    line-height: 3.8vw;
    color: #431107;
    margin-bottom: 0;
    text-align: left;
}

.heading_H1 {
    font-size: 4.2vw;
    line-height: 4.8vw;
}

.desktop_extra_large {
    font-size: 1.5vw;
    line-height: 1.8vw;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7vw;
    align-items: center;
}

.image-container {
    display: flex;
    align-items: stretch;
    gap: 2vw;
    justify-content: center;
}

.vertical-image {
    position: relative;
    overflow: hidden;
    width: 20vw;
    height: 32vw;
    flex-shrink: 0;
}

.vertical-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3vw 2vw;
    justify-items: center;
}

.advantage-item {
    border: 1px solid #431107;
    padding: 2vw;
    text-align: center;
    border-radius: 0;
    width: 100%;
    max-width: 16vw;
}

.advantage-number {
    margin-bottom: 1vw;
    color: #431107;
}

.advantage-text {
    color: #431107;
}

@media (max-width: 500px) {
    .about-section {
        padding: 0 4vw;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, auto);
        gap: 2vw;
        align-items: start;
    }

    .image-container {
        display: contents;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5vw 4vw;
        margin-top: 8vw;
    }

    .advantage-item {
        height: auto;
        padding: 4vw 3vw;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .vertical-image {
        width: 100%;
        height: 80vw;
    }

    .vertical-image__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vertical-image:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1;
    }

    .vertical-image:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 2;
    }

    .advantages-grid {
        display: contents;
    }

    .heading_H3 {
        font-size: 14vw;
        line-height: 14vw;
        margin-top: 6vh;
        margin-bottom: 7vh !important;
    }

    .heading_H1 {
        font-size: 15vw;
        line-height: 15vw;
    }

    .desktop_extra_large {
        font-size: 5vw;
        line-height: 5vw;
    }

    .advantage-item {
        height: 38vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .advantage-item:nth-child(1) {
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .advantage-item:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1;
        margin-top: 42vw;
    }

    .advantage-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2;
    }

    .advantage-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 2;
        margin-top: 42vw;
    }
}