/* Privacy policy page styles
 * Moved out of an inline <style> block so CSP can enforce style-src 'self'
 */

body { font-family: Arial, sans-serif; line-height: 1.6; max-width: 800px; margin: 2rem auto; padding: 0 1rem; }
h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.5rem; margin-top: 1.5rem; }
p { margin-bottom: 1rem; }
a { color: #1a73e8; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Dark mode - synced from main page via localStorage */
body.dark-mode {
    background-color: #1e1e1e;
    color: #e0e0e0;
}
body.dark-mode a {
    color: #81c784;
}
body.dark-mode h1,
body.dark-mode h2 {
    color: #e0e0e0;
}
