/* ============================== */
/* LEGAL PAGES                    */
/* ============================== */

.legal-page {
    padding: 120px 24px 80px;
    min-height: 100vh;
}

.legal-container {
    max-width: 720px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-soft);
}
.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.legal-section h3 {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.legal-section li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-main);
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}
.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-dark);
}

.legal-section a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-section a:hover {
    color: var(--accent-green);
}

/* ============================== */
/* RESPONSIVE                     */
/* ============================== */
@media (max-width: 768px) {
    .legal-page { padding: 100px 20px 60px; }
    .legal-container h1 { font-size: 26px; }
    .legal-section h2 { font-size: 18px; }
    .legal-section { margin-bottom: 28px; padding-bottom: 28px; }
}
