/* Юридичні сторінки: /terms, /payment-delivery */
.legal-page {
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content {
    line-height: 1.6;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-color-secondary);
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.legal-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color, #007bff);
}

.legal-section .important-notice {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.legal-section .important-notice p {
    margin-bottom: 0;
}

.legal-section .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.legal-section .subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-color-secondary);
    margin-bottom: 15px;
}

.legal-list {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-list li {
    font-size: 15px;
    color: var(--text-color-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.legal-section strong,
.legal-section b {
    color: var(--text-color-secondary-bold);
    font-weight: 600;
}

.legal-page a {
    color: var(--primary-color, #007bff);
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .legal-page {
        padding: 15px 0;
    }

    .legal-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .legal-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .legal-section .section-title {
        font-size: 18px;
    }

    .legal-section .subsection-title {
        font-size: 15px;
    }

    .legal-intro {
        font-size: 15px;
        margin-bottom: 20px;
    }
}
