.cookieConsentContainer {
    z-index: 999;
    width: 90%;
    max-width: 1264px;
    box-sizing: border-box;
    padding: 20px;
    background: #662d91;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.high-contrast .cookieConsentContainer {
    background: black;
    border: solid 2px white;
}

.cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, Arial, sans-serif;
    color: #fff;
    font-size: 2em;
    line-height: 24px;
    display: block;
    font-weight: bold;
}

.cookieConsentContainer .cookieDesc p {
    margin: 10px 0 0 0;
    padding: 0;
    font-family: OpenSans, Arial, sans-serif;
    color: #fff;
    font-size: 0.9em;
    line-height: 20px;
}

.cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, Arial, sans-serif;
    color: #fff;
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, Arial, sans-serif;
    color: #fff;
    font-size: 0.9em;
    font-weight: 700;
    margin-top: 14px;
    background: #000;
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: #72bf44;
}

.high-contrast .cookieConsentContainer .cookieButton a {
    border: solid 1px white;
}

.high-contrast .cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: white;
    border: solid 1px white;
    color: black !important;
}

@media (max-width: 480px) {
    .cookieConsentContainer {
        padding: 16px;
        bottom: 20px;
    }
}