/* Cookie Styles CSS */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 58, 138, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Lato', sans-serif;
}

.cookie-text {
    flex: 1;
    margin-right: 20px;
}

.cookie-text h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: white;
    font-family: 'Playfair Display', serif;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #d4213d;
    color: white;
}

.cookie-accept:hover {
    background-color: #b51b32;
}

.cookie-decline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
    background-color: #f5f5f5;
    color: #1e3a8a;
}

.cookie-settings:hover {
    background-color: #e0e0e0;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

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