/* Privacy Policy Styles for herbie */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 40px;
}

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
}

main h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.last-updated {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1rem;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

section {
    margin-bottom: 40px;
}

section h3 {
    font-size: 1.8rem;
    color: #495057;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

section h4 {
    font-size: 1.3rem;
    color: #6c757d;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

strong {
    color: #495057;
    font-weight: 600;
}

footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
    margin-top: 40px;
}

footer p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-note a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-note a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 8px;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    main h2 {
        font-size: 2rem;
    }
    
    section h3 {
        font-size: 1.5rem;
    }
    
    p, li {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }
    
    .container {
        box-shadow: none;
        max-width: none;
        margin: 0;
        padding: 20px;
    }
    
    .footer-note {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-note a {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .container {
        border: 2px solid #333;
    }
    
    section h3 {
        border-bottom-color: #333;
    }
}