/* =============================
   Legal (Privacy/Terms) Styles
   ============================= */

.legal-page {
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--bg-body);
    transition: background 0.3s;
}

.narrow-container {
    max-width: 900px;
}

.legal-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 48px;
    background: linear-gradient(90deg, var(--blue-600), var(--orange-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-card);
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.legal-section ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-page { padding-top: 100px; }
    .legal-title { font-size: 2.2rem; }
    .legal-content { padding: 32px; }
    .legal-section h2 { font-size: 1.4rem; }
}
