/* Блоки секций */
.o-section {
    padding: 60px 20px;
    border-radius: 20px;
}

.o-section--accent {
    background-color: #e54646; /* красный акцент */
    color: #fff;
    text-align: center;
}

.o-section--light {
    background-color: #151821; /* тёмный фон */
    color: #e5e5e5;
    border-radius: 12px;
}

.o-section--dark {
    background-color: #0f1115; /* чуть темнее */
    color: #e5e5e5;
}

/* Заголовки и текст */
.o-section__title {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.o-section__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Список преимуществ */
.o-advantages {
    list-style: none;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.8;
}

.o-advantages__item {
    padding: 5px 0;
}

/* Адаптив */
@media (max-width: 768px) {
    .o-section__title {
        font-size: 26px;
    }
    .o-section__text, .o-advantages__item {
        font-size: 15px;
    }
}