/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1001;
    border-top: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

#accept-all {
    background-color: #4a90e2;
    color: white;
}

#accept-all:hover {
    background-color: #3a80d2;
}

#accept-necessary, #customize-cookies {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #e5e5e5;
}

#accept-necessary:hover, #customize-cookies:hover {
    background-color: #e5e5e5;
}

.cookie-settings {
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.cookie-settings.hidden {
    display: none;
}

.cookie-option {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cookie-option input {
    margin-top: 5px;
    width: auto;
}

.cookie-option label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.cookie-option p {
    margin-left: 25px;
    color: #666;
    font-size: 0.9rem;
}

#save-preferences {
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #4a90e2;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

#save-preferences:hover {
    background-color: #3a80d2;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-option {
        flex-direction: column;
    }
    
    .cookie-option p {
        margin-left: 0;
    }
}
