/* Legal pages styling */
.legal-page {
    padding: 120px 0 80px;
}

.legal-page .container {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 8px;
}

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

.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: none;
    margin-bottom: 16px;
    padding-left: 0;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 4px 0 4px 24px;
    position: relative;
}

.legal-page ul li::before {
    content: "•";
    color: var(--cyan);
    font-weight: 700;
    position: absolute;
    left: 8px;
}

.legal-page a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page a:hover {
    color: var(--magenta);
}
