/* ═══════════════════════════════════════════════════════════════════════════
   PRIVACY PAGE STYLES
   Styles specific to the Privacy Policy page
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   PRIVACY CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */
.privacy-content {
    padding: 4rem 0;
}

.privacy-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.privacy-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.privacy-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-content ul,
.privacy-content ol {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.privacy-content a {
    color: var(--accent-cyan);
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - PRIVACY PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .privacy-content {
        padding: 3rem 0;
    }

    .privacy-content h2 {
        margin-top: 2rem;
    }
}
