#cookieConsentContainer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: #f1f1f1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
    font-family: Arial, sans-serif;
    display: none; /* Initially hidden */
}
#cookieConsent {
    padding: 20px;
    text-align: center;
}
#cookieConsent h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}
#cookieConsent p {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #666;
}
#cookieConsent p a {
    color: #581845;
    text-decoration: none;
}
#cookieConsent p a:hover {
    text-decoration: underline;
}
.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
#acceptCookies {
    padding: 10px 20px;
    background: #581845;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
#acceptCookies:hover {
    background: #2c0a22;
}
#rejectCookies {
    padding: 10px 20px;
    background: #332e31;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
#rejectCookies:hover {
    background: #181a1d;
}

/* Responsive design */
@media (max-width: 768px) {
    #cookieConsentContainer {
        width: 90%;
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
}