/* ============================================
   LEGAL & SUPPORT PAGES — Shared Styles
   ============================================ */

.legal-page {
    padding: 120px 24px 60px;
    background: var(--yellow-pale);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.7;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: var(--border);
}

/* Sections */
.legal-section {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 16px 0 8px;
    color: var(--dark);
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--dark);
}

.legal-section ul,
.legal-section ol {
    margin: 8px 0 16px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
}

.legal-section li {
    margin-bottom: 6px;
}

.legal-section a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.legal-section a:hover {
    opacity: 0.7;
}

/* Contact Card */
.contact-card {
    background: var(--yellow);
    border: var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
}

.contact-card p {
    margin-bottom: 4px;
}

/* Support Page Specifics */
.support-faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-faq-item {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform 0.2s;
}

.support-faq-item:hover {
    transform: translateX(4px);
}

.support-faq-item h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 8px;
    color: var(--black);
}

.support-faq-item p {
    margin-bottom: 8px;
}

.support-faq-item ol,
.support-faq-item ul {
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .legal-page {
        padding: 100px 16px 40px;
    }

    .legal-title {
        font-size: 1.8rem;
    }

    .legal-section h2 {
        font-size: 1.1rem;
    }
}