/* Cookie Policy Styles */
.cookie-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-policy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #27ae60;
    padding-bottom: 30px;
}

.cookie-policy-header h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.effective-date {
    font-size: 1.6rem;
    color: #7f8c8d;
    font-weight: 500;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

.cookie-policy-content {
    margin-top: 30px;
}

.policy-section {
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #27ae60;
}

.policy-section h2 {
    color: #27ae60;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h3 {
    color: #2980b9;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.policy-section h4 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 15px;
    color: #34495e;
    font-size: 1.6rem;
    text-align: justify;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    margin-bottom: 8px;
    color: #34495e;
    line-height: 1.7;
    font-size: 1.6rem;
}

.policy-section li strong {
    color: #27ae60;
    font-weight: 600;
}

.cookie-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1.6rem;
    margin-right: 10px;
}

.cookie-essential {
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: bold;
}

.cookie-optional {
    background: #f39c12;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: bold;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.6rem;
}

.contact-info a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2ecc71;
    text-decoration: underline;
}

.effective-date-footer {
    text-align: center;
    background: #27ae60;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    font-size: 1.6rem;
}

.health-info-highlight {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.security-highlight {
    background: #d1ecf1;
    border: 1px solid #b8daff;
    border-left: 4px solid #17a2b8;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.warning-box {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.info-box {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.cookie-controls {
    background: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.cookie-controls h4 {
    margin-top: 0;
}

.opt-out-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.opt-out-link {
    background: #6c757d;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.6rem;
    transition: background-color 0.3s ease;
}

.opt-out-link:hover {
    background: #5a6268;
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-policy-container {
        padding: 20px 15px;
    }
    
    .cookie-policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .opt-out-links {
        flex-direction: column;
    }
}

/* Print styles */
@media print {
    .cookie-policy-container {
        max-width: none;
        box-shadow: none;
    }
    
    .policy-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .cookie-policy-header h1 {
        color: #000;
    }
    
    .policy-section h2 {
        color: #000;
    }
}
