/* ============================================
   Legal Pages (Terms of Use, Privacy Policy)
   ============================================ */

.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

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

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.legal-date {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    margin-top: 40px;
}

.legal-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    margin-top: 24px;
}

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

.legal-content ul {
    margin: 12px 0 16px 24px;
    list-style: disc;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--orange-600);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--orange-700);
}

.legal-content strong {
    color: var(--gray-800);
    font-weight: 600;
}

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

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 28px;
    }
}
