/* ========== LEGAL PAGE ========== */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 20px;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 900;
}

.legal-content {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

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

.legal-section h2 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.legal-section ul {
    list-style: none;
    margin: 12px 0;
}

.legal-section li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-gray);
}

.legal-section li::before {
    content: '\2022';
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-weight: 700;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
}

.legal-section a:hover { text-decoration: underline; }

.legal-box {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.legal-box p {
    margin-bottom: 6px;
    font-size: 14px;
}

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

.warning-box {
    background: #FFF3E0;
    border: 1px solid #FFB74D;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 14px;
    color: #E65100;
    margin: 16px 0;
}

.legal-footer {
    text-align: center;
    margin-top: 32px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .legal-content { padding: 24px; }
    .legal-header h1 { font-size: 28px; }
}
