/* Cookie Consent Banner - Vereenvoudigd */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
    border-top: 3px solid #2196F3;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.cookie-consent-text h3 i {
    color: #ff9800;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.cookie-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
}

/* Privacy Policy Section Styling */
.privacy-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.privacy-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.privacy-section h4 {
    color: #555;
    margin: 25px 0 12px 0;
    font-size: 18px;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 12px;
}

.privacy-section ul {
    margin: 15px 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-section li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

/* Default: Green checkmarks */
.privacy-section li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
}

/* Red X for "do NOT collect" sections */
.privacy-section .no-collect-list li:before {
    content: "âœ—";
    color: #f44336;
    font-size: 18px;
}

/* Arrow for "Your Rights" sections */
.privacy-section .rights-list li:before {
    content: "â†’";
    color: #2196F3;
    font-size: 16px;
}

.privacy-section strong {
    color: #333;
}

/* Info card lists styling - GEEN bullets */
.info-card ul {
    margin: 15px 0 20px 0;
    padding-left: 20px;
    list-style: none;
}

.info-card li {
    margin-bottom: 10px;
    padding-left: 0;
    line-height: 1.6;
    color: #666;
}

/* Cookie Settings Card */
.cookie-settings-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.cookie-settings-card h2 {
    margin: 0 0 15px 0;
    color: #333;
}

.cookie-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 15px;
}

.cookie-status i {
    font-size: 24px;
}

.cookie-status.status-accepted {
    background: #e8f5e9;
    border-left: 4px solid #4CAF50;
}

.cookie-status.status-accepted i {
    color: #4CAF50;
}

.cookie-status.status-declined {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.cookie-status.status-declined i {
    color: #ff9800;
}

.cookie-status.status-none {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
}

.cookie-status.status-none i {
    color: #2196F3;
}

.cookie-status-text {
    flex: 1;
}

.cookie-status-text strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.cookie-status-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Footer Styling - STICKY FOOTER */
.container,
.settings-page {
    min-height: calc(100vh - 70px - 60px); /* viewport - nav height - footer height */
}

.site-footer {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #495057;
    padding: 8px 20px;
    margin-top: 40px;
    border-top: 2px solid #0091FF;
    box-shadow: 0 -2px 16px rgba(0, 145, 255, 0.08);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-left p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #0091FF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 3px 6px;
    border-radius: 6px;
}

.footer-links a:hover {
    color: #0077d4;
    background: rgba(0, 145, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
    }
    
    .cookie-consent-buttons {
        width: 100%;
    }
    
    .cookie-consent-buttons .btn {
        flex: 1;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}