.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #212529;
    color: #fff;
    padding: 16px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.cookie-consent-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 990px;
    margin: 0 auto;
    padding: 0 15px;
}
.cookie-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}
.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
}
.cookie-consent-text a:hover,
.cookie-consent-text a:focus {
    color: #b5dec8;
    text-decoration: none;
}
.cookie-consent-btn {
    flex-shrink: 0;
    padding: 10px 28px;
    border: none;
    border-radius: 4px;
    background-color: #015a58;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}
.cookie-consent-btn:hover,
.cookie-consent-btn:focus {
    background-color: #013e3c;
    outline: none;
}
@media (max-width: 767px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent-btn {
        width: 100%;
        padding: 14px;
    }
}
