.advantages-section {
    width: 100%;
    padding: 0 60px;
    overflow: hidden;
}

@media (max-width: 1800px) {
    .advantages-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1500px) {
    .advantages-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .advantages-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.advantages-section .advantages-title {
    color: #121212;
    letter-spacing: -1.2px;
    font: 600 40px/1.1 Manrope, -apple-system, Roboto, Helvetica, sans-serif;
    margin: 0;
}

@media (max-width: 997px) {
    .advantages-section .advantages-title {
        font-size: 24px;
    }
}

.advantages-section .advantages-grid {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 997px) {
    .advantages-section .advantages-grid {
        flex-wrap: nowrap;
        margin-top: 20px;
    }
}

.advantages-section .advantage-card {
    border-radius: 16px;
    width: calc(calc(100% / 3) - 24px);
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #fff;
    padding: 24px;
}

.advantages-section .advantage-header {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 40px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.advantages-section .advantage-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 80px;
    flex-shrink: 0;
}

.advantages-section .decorative-dot {
    border-radius: 8px;
    display: flex;
    width: 12px;
    flex-shrink: 0;
    height: 12px;
    background-color: #f1f1f1;
}

.advantages-section .advantage-content {
    margin-top: 24px;
    width: 100%;
    font-family: Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

.advantages-section .advantage-title {
    color: #121212;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.78px;
    margin: 0;
}

@media (max-width: 997px) {
    .advantages-section .advantage-title {
        font-size: 24px;
    }
}

.advantages-section .advantage-description {
    color: #8c8c8c;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: -0.16px;
    margin: 16px 0 0 0;
}

.advantages-section .navigation-controls {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    margin-top: 20px;
}

@media (min-width: 997px) {
    .advantages-section .navigation-controls {
        display: none;
    }
}

.advantages-section .nav-button {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    position: relative;
    cursor: pointer;
    background-color: #fff;
}

.advantages-section .nav-button:hover {
    background-color: #f5f5f5;
    border-color: #d1d1d1;
}

.advantages-section .arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.advantages-section .nav-button:first-child svg {
    transform: rotate(360deg);
}