/* ===== POLÍTICA DE PRIVACIDADE CSS ===== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header */
.privacy-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.privacy-header .navbar {
    padding: 0;
}

.privacy-header .navbar-brand {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.privacy-header .btn-outline-primary {
    border-color: white;
    color: white;
    transition: all 0.3s ease;
}

.privacy-header .btn-outline-primary:hover {
    background-color: white;
    color: #667eea;
}

/* Main Content */
.privacy-main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.privacy-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Header Section */
.privacy-header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.privacy-title i {
    font-size: 2rem;
}

.privacy-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.privacy-alert {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-alert i {
    font-size: 1.2rem;
}

/* Table of Contents */
.privacy-toc {
    background: #f8f9fa;
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-toc h2 {
    color: #495057;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.toc-list li a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.toc-list li a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Privacy Sections */
.privacy-sections {
    padding: 2rem;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: #495057;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.privacy-section h2 i {
    color: #667eea;
}

.privacy-section h3 {
    color: #6c757d;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 1rem;
    color: #6c757d;
    line-height: 1.7;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: #6c757d;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.usage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.usage-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.usage-item h4 {
    color: #495057;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.usage-item p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.platform-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.platform-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.platform-item:nth-child(1) i {
    color: #4285f4;
}

.platform-item:nth-child(2) i {
    color: #1877f2;
}

.platform-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.platform-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Controls */
.cookie-controls {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cookie-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cookie-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.cookie-type h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cookie-type h4 i {
    color: #667eea;
}

.cookie-type p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.security-item i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.security-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.security-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.right-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.right-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.right-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.rights-request {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.rights-request h3 {
    color: #1976d2;
    margin-bottom: 1rem;
}

.rights-request p {
    color: #424242;
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Ensure minimum width for contact items on larger screens */
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .contact-item {
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.contact-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.contact-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Contact Form */
.contact-form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.contact-form-section h3 {
    color: #495057;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.contact-form .form-check {
    margin-top: 1rem;
}

.contact-form .form-check-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.contact-form .btn-primary {
    background: #667eea;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Privacy Footer */
.privacy-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.footer-content p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* Main Footer */
.privacy-footer-main {
    background: #343a40;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.privacy-footer-main .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.privacy-footer-main .footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.privacy-footer-main .footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-footer-main .footer-links a:hover {
    color: white;
}

/* Cookie Modal */
.cookie-settings {
    max-height: 400px;
    overflow-y: auto;
}

.cookie-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-header h6 {
    color: #495057;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-header h6 i {
    color: #667eea;
}

.cookie-category p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .privacy-title i {
        font-size: 1.5rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .usage-grid,
    .platform-grid,
    .cookie-types,
    .security-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .privacy-footer-main .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-footer-main .footer-links {
        justify-content: center;
    }
    
    .privacy-sections {
        padding: 1rem;
    }
    
    .privacy-header-section {
        padding: 2rem 1rem;
    }
    
    .privacy-toc {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .privacy-main {
        padding: 2rem 0;
    }
    
    .privacy-content {
        border-radius: 0;
        margin: 0;
    }
    
    .privacy-header-section {
        padding: 1.5rem 1rem;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-alert {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.privacy-section h2:focus,
.privacy-section h3:focus,
.toc-list li a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success/Error Messages */
.alert {
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Print Styles */
@media print {
    .privacy-header,
    .privacy-footer-main,
    .cookie-controls,
    .contact-form-section {
        display: none;
    }
    
    .privacy-content {
        box-shadow: none;
        border-radius: 0;
    }
    
    .privacy-section {
        page-break-inside: avoid;
    }
}

/* Company Information Section */
.privacy-company-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid #dee2e6;
}

.privacy-company-info h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.company-item strong {
    color: #333;
    font-weight: 600;
}

.company-compliance {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.company-compliance p {
    margin: 0;
    color: #1565c0;
    font-weight: 500;
}

/* Enhanced Contact Item Styles */
.contact-item small {
    color: #888;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.5rem;
}

/* Privacy Contact Form Styles */
.privacy-contact-form {
    margin-top: 1.5rem;
}

.privacy-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.privacy-contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.privacy-contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.privacy-contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.privacy-contact-form .form-check-label {
    font-weight: normal;
    color: #666;
    line-height: 1.4;
}

.privacy-contact-form .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.privacy-contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Compliance Badges */
.compliance-badges {
    margin-top: 1rem;
    text-align: center;
}

.compliance-badges .badge {
    margin: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== LGPD PAGE SPECIFIC STYLES ===== */

/* LGPD Principles Grid */
.lgpd-principles {
    margin: 2rem 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.principle-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.principle-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.principle-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.principle-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Data Types Grid */
.data-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.data-type-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.data-type-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.data-type-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.data-type-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.data-type-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-type-item li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.data-type-item li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Legal Bases Grid */
.legal-bases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.legal-basis-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.legal-basis-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.legal-basis-item i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.legal-basis-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-basis-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Collection Methods Grid */
.collection-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.collection-method-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.collection-method-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.collection-method-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.collection-method-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.collection-method-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Sharing Partners Grid */
.sharing-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sharing-partner-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.sharing-partner-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.sharing-partner-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.sharing-partner-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.sharing-partner-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Retention Periods Grid */
.retention-periods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.retention-period-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.retention-period-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.retention-period-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.retention-period-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.retention-period-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.retention-note {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.retention-note p {
    color: #1565c0;
    margin: 0;
    font-weight: 500;
}

/* Advertising Controls */
.advertising-controls {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.advertising-controls h3 {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advertising-controls ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.advertising-controls li {
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.advertising-controls a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.advertising-controls a:hover {
    text-decoration: underline;
}

/* Transfer Reasons Grid */
.transfer-reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.transfer-reason-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.transfer-reason-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.transfer-reason-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.transfer-reason-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.transfer-reason-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.transfer-protection {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
}

.transfer-protection h3 {
    color: #155724;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.transfer-protection p {
    color: #155724;
    margin-bottom: 1rem;
}

.transfer-protection ul {
    color: #155724;
    margin: 0;
    padding-left: 1.5rem;
}

.transfer-protection li {
    margin-bottom: 0.5rem;
}

/* Minor Protection Grid */
.minor-protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.minor-protection-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.minor-protection-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.minor-protection-item i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.minor-protection-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.minor-protection-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.parental-rights {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.parental-rights h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.parental-rights p {
    color: #856404;
    margin: 0;
}

/* Notification Methods Grid */
.notification-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.notification-method-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.notification-method-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.notification-method-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.notification-method-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.notification-method-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.changes-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
    text-align: center;
}

.changes-note p {
    color: #6c757d;
    margin: 0.5rem 0;
    font-weight: 500;
}

/* LGPD Contact Form Specific Styles */
#lgpdContactForm {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

#lgpdContactForm .form-group {
    margin-bottom: 1.5rem;
}

#lgpdContactForm label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

#lgpdContactForm .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

#lgpdContactForm .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

#lgpdContactForm .form-check-label {
    font-weight: normal;
    color: #666;
    line-height: 1.4;
}

#lgpdContactForm .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#lgpdContactForm .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design for LGPD Page */
@media (max-width: 768px) {
    .principles-grid,
    .data-types-grid,
    .legal-bases-grid,
    .collection-methods-grid,
    .sharing-partners-grid,
    .retention-periods-grid,
    .transfer-reasons-grid,
    .minor-protection-grid,
    .notification-methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .principle-item,
    .data-type-item,
    .legal-basis-item,
    .collection-method-item,
    .sharing-partner-item,
    .retention-period-item,
    .transfer-reason-item,
    .minor-protection-item,
    .notification-method-item {
        padding: 1rem;
    }
    
    .principle-item h4,
    .data-type-item h4,
    .legal-basis-item h4,
    .collection-method-item h4,
    .sharing-partner-item h4,
    .retention-period-item h4,
    .transfer-reason-item h4,
    .minor-protection-item h4,
    .notification-method-item h4 {
        font-size: 1rem;
    }
    
    .principle-item p,
    .data-type-item p,
    .legal-basis-item p,
    .collection-method-item p,
    .sharing-partner-item p,
    .retention-period-item p,
    .transfer-reason-item p,
    .minor-protection-item p,
    .notification-method-item p {
        font-size: 0.85rem;
    }
    
    .retention-note,
    .transfer-protection,
    .parental-rights,
    .advertising-controls {
        padding: 1.5rem;
    }
    
    #lgpdContactForm {
        padding: 1.5rem;
    }
}

/* Print Styles for LGPD Page */
@media print {
    .lgpd-principles,
    .data-types-grid,
    .legal-bases-grid,
    .collection-methods-grid,
    .sharing-partners-grid,
    .retention-periods-grid,
    .transfer-reasons-grid,
    .minor-protection-grid,
    .notification-methods-grid {
        display: block;
    }
    
    .principle-item,
    .data-type-item,
    .legal-basis-item,
    .collection-method-item,
    .sharing-partner-item,
    .retention-period-item,
    .transfer-reason-item,
    .minor-protection-item,
    .notification-method-item {
        break-inside: avoid;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
    }
}

/* ===== COOKIE POLICY PAGE SPECIFIC STYLES ===== */

/* Cookie Basics Grid */
.cookie-basics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-basic-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-basic-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.cookie-basic-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.cookie-basic-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cookie-basic-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Types Grid */
.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-type-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.cookie-type-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.cookie-type-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-type-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-type-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cookie-type-item li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.cookie-type-item li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Essential Cookies Grid */
.essential-cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.essential-cookie-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.essential-cookie-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.essential-cookie-item i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.essential-cookie-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.essential-cookie-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.essential-cookie-item p strong {
    color: #495057;
    font-weight: 600;
}

.essential-note {
    background: #d4edda;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
}

.essential-note p {
    color: #155724;
    margin: 0;
    font-weight: 500;
}

/* Analytics Cookies Grid */
.analytics-cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.analytics-cookie-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.analytics-cookie-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.analytics-cookie-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.analytics-cookie-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.analytics-cookie-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.analytics-cookie-item p strong {
    color: #495057;
    font-weight: 600;
}

.analytics-cookie-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.analytics-cookie-item li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.analytics-cookie-item li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.analytics-controls {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.analytics-controls h3 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.analytics-controls p {
    color: #1565c0;
    margin-bottom: 1rem;
}

.analytics-controls ul {
    color: #1565c0;
    margin: 0;
    padding-left: 1.5rem;
}

.analytics-controls li {
    margin-bottom: 0.5rem;
}

.analytics-controls a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}

.analytics-controls a:hover {
    text-decoration: underline;
}

/* Marketing Cookies Grid */
.marketing-cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.marketing-cookie-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.marketing-cookie-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.marketing-cookie-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.marketing-cookie-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.marketing-cookie-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.marketing-cookie-item p strong {
    color: #495057;
    font-weight: 600;
}

.marketing-cookie-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.marketing-cookie-item li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.marketing-cookie-item li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.marketing-cookie-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.marketing-cookie-item a:hover {
    text-decoration: underline;
}

.marketing-optout {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.marketing-optout h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.optout-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.optout-method-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffeaa7;
}

.optout-method-item i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.optout-method-item h4 {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.optout-method-item p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
}

/* Third Party Cookies Grid */
.third-party-cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.third-party-cookie-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.third-party-cookie-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.third-party-cookie-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.third-party-cookie-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.third-party-cookie-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.third-party-cookie-item p strong {
    color: #495057;
    font-weight: 600;
}

.third-party-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.third-party-note p {
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Cookie Controls Grid */
.cookie-controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-control-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-control-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.cookie-control-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.cookie-control-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cookie-control-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-control-item .btn {
    margin-top: 0.5rem;
}

.cookie-preferences {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.cookie-preferences h3 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.preferences-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.preference-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #bbdefb;
}

.preference-label {
    color: #1976d2;
    font-weight: 500;
}

.preference-status {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.preference-status.essential-enabled {
    color: #28a745;
    font-weight: 600;
}

/* Browser Settings Grid */
.browser-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-setting-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.browser-setting-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.browser-setting-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.browser-setting-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.browser-setting-item ol {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    padding-left: 1.5rem;
}

.browser-setting-item li {
    margin-bottom: 0.5rem;
}

.browser-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.browser-note p {
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Advertising Platforms Grid */
.advertising-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.advertising-platform-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.advertising-platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.advertising-platform-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.advertising-platform-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advertising-platform-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.advertising-platform-item p strong {
    color: #495057;
    font-weight: 600;
}

.advertising-platform-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.advertising-platform-item li {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.advertising-platform-item li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.advertising-platform-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.advertising-platform-item a:hover {
    text-decoration: underline;
}

.advertising-optout {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.advertising-optout h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.optout-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.optout-step-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffeaa7;
}

.optout-step-item i {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.optout-step-item h4 {
    color: #856404;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.optout-step-item p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
}

/* Update Notification Grid */
.update-notification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.update-notification-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.update-notification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: white;
}

.update-notification-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.update-notification-item h4 {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.update-notification-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Contact Form Specific Styles */
#cookieContactForm {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

#cookieContactForm .form-group {
    margin-bottom: 1.5rem;
}

#cookieContactForm label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

#cookieContactForm .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

#cookieContactForm .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

#cookieContactForm .form-check-label {
    font-weight: normal;
    color: #666;
    line-height: 1.4;
}

#cookieContactForm .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#cookieContactForm .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design for Cookie Policy Page */
@media (max-width: 768px) {
    .cookie-basics-grid,
    .cookie-types-grid,
    .essential-cookies-grid,
    .analytics-cookies-grid,
    .marketing-cookies-grid,
    .third-party-cookies-grid,
    .cookie-controls-grid,
    .browser-settings-grid,
    .advertising-platforms-grid,
    .optout-methods-grid,
    .optout-steps-grid,
    .update-notification-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cookie-basic-item,
    .cookie-type-item,
    .essential-cookie-item,
    .analytics-cookie-item,
    .marketing-cookie-item,
    .third-party-cookie-item,
    .cookie-control-item,
    .browser-setting-item,
    .advertising-platform-item,
    .optout-method-item,
    .optout-step-item,
    .update-notification-item {
        padding: 1rem;
    }
    
    .cookie-basic-item h4,
    .cookie-type-item h4,
    .essential-cookie-item h4,
    .analytics-cookie-item h4,
    .marketing-cookie-item h4,
    .third-party-cookie-item h4,
    .cookie-control-item h4,
    .browser-setting-item h4,
    .advertising-platform-item h4,
    .optout-method-item h4,
    .optout-step-item h4,
    .update-notification-item h4 {
        font-size: 1rem;
    }
    
    .cookie-basic-item p,
    .cookie-type-item p,
    .essential-cookie-item p,
    .analytics-cookie-item p,
    .marketing-cookie-item p,
    .third-party-cookie-item p,
    .cookie-control-item p,
    .browser-setting-item p,
    .advertising-platform-item p,
    .optout-method-item p,
    .optout-step-item p,
    .update-notification-item p {
        font-size: 0.85rem;
    }
    
    .essential-note,
    .analytics-controls,
    .marketing-optout,
    .third-party-note,
    .cookie-preferences,
    .browser-note,
    .advertising-optout {
        padding: 1.5rem;
    }
    
    #cookieContactForm {
        padding: 1.5rem;
    }
    
    .preferences-display {
        grid-template-columns: 1fr;
    }
}

/* Print Styles for Cookie Policy Page */
@media print {
    .cookie-basics-grid,
    .cookie-types-grid,
    .essential-cookies-grid,
    .analytics-cookies-grid,
    .marketing-cookies-grid,
    .third-party-cookies-grid,
    .cookie-controls-grid,
    .browser-settings-grid,
    .advertising-platforms-grid,
    .optout-methods-grid,
    .optout-steps-grid,
    .update-notification-grid {
        display: block;
    }
    
    .cookie-basic-item,
    .cookie-type-item,
    .essential-cookie-item,
    .analytics-cookie-item,
    .marketing-cookie-item,
    .third-party-cookie-item,
    .cookie-control-item,
    .browser-setting-item,
    .advertising-platform-item,
    .optout-method-item,
    .optout-step-item,
    .update-notification-item {
        break-inside: avoid;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
    }
}
