.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1em;
    z-index: 9999;
    display: none;
}
.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-buttons {
    display: flex;
    gap: 0.5em;
}
.cookie-btn {
    background: #fcb900;
    border: none;
    padding: 0.5em 1em;
    color: #222;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn.decline {
    background: #888;
    color: #fff;
}
.cookie-consent-banner a {
    color: #fcb900;
    text-decoration: underline;
}
