@import url('tokens.css');
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 12px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}

.legal-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 20px 0 8px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 6px;
}

.legal-content a {
    color: #4F8FFF;
    text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

/* ── Dark Mode ────────────────────────────────────────────── */
html.dark-mode .legal-content h2 {
    color: #ffffff;
    border-top-color: #1f1f1f;
}

html.dark-mode .legal-content h3 {
    color: #ededed;
}

html.dark-mode .legal-content p {
    color: #888888;
}

html.dark-mode .legal-content ul li {
    color: #888888;
}

html.dark-mode .legal-content a {
    color: #a1a1a1;
}

