/* Legal pages — shared styles */
.legal-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

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

.legal-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 6px;
    line-height: 1.3;
}

.legal-meta {
    font-size: .88rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-800);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: .98rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content p strong {
    color: var(--blue-900);
}

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

.legal-content ul li {
    position: relative;
    padding-left: 22px;
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 4px;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-400);
}

.legal-content ul li strong {
    color: var(--blue-900);
}

.legal-content a {
    color: var(--blue-500);
    font-weight: 600;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--blue-700);
    text-decoration: underline;
}