/* ===== ИНФОРМАЦИОННЫЕ СТРАНИЦЫ ===== */

.homepages {
    padding: 120px 15px 20px;
    max-width: 860px;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 100vh;
}

.about-us {
    width: 100%;
    margin-bottom: 16px;
}

/* Заголовок страницы */
.about-us h1 {
    font-size: 28px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 20px;
}

/* Заголовок раздела */
.about-us h2 {
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    margin: 24px 0 8px;
}

/* Текст */
.about-us p {
    font-size: 16px;
    font-weight: 300;
    color: #444;
    line-height: 1.7;
    margin: 0 0 10px;
}

.about-us strong {
    font-weight: 500;
    color: #1a1a1a;
}

.about-us em {
    color: #999;
    font-style: italic;
}

.about-us a {
    color: #A1312B;
    text-decoration: underline;
}

/* Список юридических документов */
.legal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.legal-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    color: #1a1a1a;
    font-size: 17px;
    font-weight: 300;
    padding: 16px 18px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
    transition: background-color 0.15s;
}

.legal-list__item:hover {
    background-color: #f5f5f5;
}

.legal-list__title {
    line-height: 1.4;
}

.legal-list__arrow {
    font-size: 18px;
    flex-shrink: 0;
    margin-left: 12px;
    color: #A1312B;
}

/* Мобильная версия */
@media (max-width: 880px) {
    .homepages {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .about-us h1 {
        font-size: 22px;
    }

    .about-us h2 {
        font-size: 18px;
    }

    .about-us p {
        font-size: 15px;
    }

    .legal-list__item {
        font-size: 15px;
        padding: 14px 14px;
    }
}

@media (max-width: 480px) {
    .homepages {
        padding-left: 8px;
        padding-right: 8px;
    }
}
