/* ************************************** */
/* privacy.css */
/* ************************************** */

.privacy{
    background-color: var(--bg-secondary)
}

.privacy-content {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    color: var(--text-primary);
    font-size: 0.2 rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsiveness */
@media (max-width: 768px) {
    .privacy-content {
        font-size: 0.9rem;
        padding: 25px;
    }
}