.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #463e3e;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-banner p {
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.cookie-banner a {
    color: #ebb000;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #fff;
}

.cookie-banner button {
    background-color: #ebb000;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-banner button:hover {
    background-color: #fff;
    color: #463e3e;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 10px;
        font-size: 12px;
    }

    .cookie-banner button {
        padding: 6px 12px;
        font-size: 12px;
    }
}
