#cookieConsent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--text-white-color);
    color: var(--primary-color);
    padding: 15px;
    text-align: center;
    z-index: 9999;
}
#cookieConsent button {
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
#acceptCookie {
    background: #4caf50;
    color: var(--text-white-color);
}
#viewPolicy {
    background: #2196f3;
    color: var(--text-white-color);
}
#declineCookie {
    background: #f44336;
    color: var(--text-white-color);
}
