/* privacy-policy.css - Additional styles for privacy policy page */

/* Print Styles */
@media print {
    .privacy-header {
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .toc-section,
    .consent-footer,
    .consent-buttons {
        display: none;
    }
    
    .policy-section {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .info-card,
    .third-party-card {
        break-inside: avoid;
    }
    
    .contact-box a {
        color: black;
        text-decoration: none;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
.toc-link:focus,
.contact-box a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}