/* legal.css — Shared styles for Terms, Privacy & Refund pages */

.legal-page {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: calc(100vh - 80px);
}

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 6px;
    color: var(--color-navy);
}

.legal-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.legal-page section {
    margin-bottom: 36px;
}

.legal-page section h2 {
    font-size: 1.35rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 178, 226, 0.15);
    display: inline-block;
}

.legal-page section h3 {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-top: 18px;
    margin-bottom: 8px;
}

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

.legal-page section ul {
    margin: 10px 0 16px 20px;
    list-style: disc;
}

.legal-page section ul li {
    font-size: 0.93rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.legal-page section a:hover {
    color: var(--color-navy);
    text-decoration: underline;
}

.active-legal {
    color: var(--color-green) !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .legal-page h1 {
        font-size: 2rem;
    }
    .legal-page section h2 {
        font-size: 1.15rem;
    }
}
