.advantages-section {
    background-color: rgba(242, 244, 245, 1);
    min-height: 100%;
}

.advantages-section .advantages-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5rem 0;
    gap: 2rem;
    min-height: 100%;
    height: 420px;
}

.advantages-section .advantages-row--reverse {
    flex-direction: row-reverse;
}

.advantages-section .advantages-content {
    width: calc(50% - 1rem);
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1;
}

.advantages-section .advantages-image {
    width: calc(50% - 1rem);
    height: 270px;
    min-height: 270px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0.5rem;
}

.advantages-section .advantages-title {
    margin-bottom: 8px;
}

.advantages-section .advantages-description {
    display: block;
    font-family: CircularXX TT, sans-serif;
    font-size: 16px;
    font-weight: 450;
    line-height: 1.5;
}

.advantages-section .advantages-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 992px) {
    .advantages-section .advantages-row,
    .advantages-section .advantages-row--reverse {flex-direction: column;padding: 40px 0 24px;}

    .advantages-section .advantages-row {
        height: auto;
        gap: 40px;
    }

    .advantages-section .advantages-content,
    .advantages-section .advantages-image {
        height: 188px;
        min-height: unset;
        width: 100%;
        text-align: center;
    }
} 