/* ===== Legal Pages Styles ===== */
.legal-page {
    padding: 120px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 0.875rem;
    color: var(--text-light);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.legal-section h3 {
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.legal-section a {
    color: var(--primary);
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-contact {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 16px;
}

.legal-contact p {
    margin-bottom: 6px;
}

.legal-contact a {
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-content {
        padding: 0 8px;
    }
}
