/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-content p {
    margin-bottom: 20px;
    max-width: 600px;
}

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

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.accept-all {
    background-color: var(--primary-color);
    color: white;
}

.accept-all:hover {
    background-color: var(--secondary-color);
}

.accept-necessary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.accept-necessary:hover {
    background-color: var(--light-background);
}

.customize {
    background-color: transparent;
    color: var(--light-text);
}

.customize:hover {
    color: var(--primary-color);
}

.cookie-settings {
    max-width: 800px;
    margin: 20px auto 0;
    display: none;
    padding: 20px;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
}

.cookie-settings h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cookie-option {
    margin-bottom: 15px;
    padding: 10px;
    background-color: white;
    border-radius: var(--border-radius);
}

.cookie-option label {
    font-weight: 500;
    margin-left: 10px;
}

.cookie-option p {
    margin-top: 5px;
    margin-left: 25px;
    font-size: 0.9em;
    color: var(--light-text);
}

.save-preferences {
    background-color: var(--primary-color);
    color: white;
    display: block;
    margin: 20px auto 0;
}

.save-preferences:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}
