/* Общий контейнер уже есть в index.css, здесь только свой стиль секций */

main {
    font-family: "Inter", sans-serif;
    color: #111111;
}

/* Заголовок страницы */
main h2 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

/* Тонкая линия под заголовком (как на других страницах) */
.underlinep {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 60px;
}

/* Блоки About */
.about-section {
    max-width: 820px;
    margin-bottom: 48px;
}

.about-section h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-section p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 10px 0;
    color: #3a3a3a;
}

/* Список в блоке "Our promise" */
.about-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
}

.about-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f3b5c7; /* розовый акцент под стиль сайта */
    font-size: 18px;
}

/* Небольшой отступ от футера */
main .container {
    padding-bottom: 80px;
}

/* Адаптив под мобильные */
@media (max-width: 768px) {
    main h2 {
        font-size: 28px;
        margin-top: 32px;
    }

    .about-section {
        margin-bottom: 32px;
    }
}
