/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2e3f6e 0%, #1a2744 100%);
    color: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid #4DB7FE;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-consent-content {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-content h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #4DB7FE;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-content h4 i {
    font-size: 24px;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.cookie-consent-content p a {
    color: #4DB7FE;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-content p a:hover {
    color: #6dc5ff;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cookie-consent-btn-accept {
    background: #4DB7FE;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(77, 183, 254, 0.4);
}

.cookie-consent-btn-accept:hover {
    background: #6dc5ff;
    box-shadow: 0 6px 20px rgba(77, 183, 254, 0.6);
    transform: translateY(-2px);
}

.cookie-consent-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-consent-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4DB7FE;
    color: #4DB7FE;
}

.cookie-consent-btn-settings {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 25px;
}

.cookie-consent-btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4DB7FE;
    color: #4DB7FE;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px 15px;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-content {
        min-width: 100%;
    }
    
    .cookie-consent-content h4 {
        justify-content: center;
        font-size: 16px;
    }
    
    .cookie-consent-content p {
        font-size: 13px;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: 120px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-btn {
        width: 100%;
    }
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-content {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-settings-header h3 {
    margin: 0;
    color: #2e3f6e;
    font-size: 24px;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cookie-settings-close:hover {
    color: #4DB7FE;
}

.cookie-settings-body {
    margin-bottom: 25px;
}

.cookie-settings-group {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-settings-group h4 {
    margin: 0 0 10px 0;
    color: #2e3f6e;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-settings-group p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #4DB7FE;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-settings-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.cookie-settings-footer .cookie-consent-btn {
    padding: 10px 25px;
}

