/* Styles for Legal Pages (Privacy Policy, Terms of Service) */
.legal-content {
    background-color: var(--card-bg);
    padding: 2rem 3rem;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    color: var(--text-color-light);
    line-height: 1.8;
}

.legal-content h2 {
    color: var(--text-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--card-border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}