/* Legal Pages (Terms, Privacy) */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: #f8fafc;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-title {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 8px;
    text-align: center;
}

.legal-updated {
    font-size: 13px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 48px;
}

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

.legal-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section p {
    font-size: 14px;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-back {
    margin-top: 48px;
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #f1f5f9;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 32px 24px;
        margin: 0 16px;
    }

    .legal-title {
        font-size: 24px;
    }

    .legal-section h2 {
        font-size: 16px;
    }
}
