.legal-page {
    background: #fff;
    padding: 40px 0 60px;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    box-sizing: border-box;
}

.legal-page__container {
    box-sizing: border-box;
    width: min(100% - 40px, var(--site-content-width, 1060px));
    max-width: var(--site-content-width, 1060px);
    margin: 0 auto;
    padding: 0;
}

.legal-page__hero {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.legal-page__hero::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #120fa0, #7b1fa2);
    border-radius: 2px;
}

.legal-page__hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #120fa0;
    margin: 0 0 12px;
}

.legal-page__hero p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.legal-page__content {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 28px 32px;
    color: #444;
    font-size: 16px;
}

.legal-page__content p {
    margin: 0 0 16px;
}

.legal-page__content p:last-child {
    margin-bottom: 0;
}

.legal-page__content a {
    color: #120fa0;
    text-decoration: underline;
}

.legal-page__content a:hover {
    color: #0e0d8a;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 24px 0 40px;
    }

    .legal-page__container {
        width: calc(100% - 40px);
    }

    .legal-page__hero h1 {
        font-size: 1.5rem;
    }

    .legal-page__content {
        padding: 20px 16px;
        font-size: 15px;
    }
}
