.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(34, 34, 34, 0.95);
    color: #fff;
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    margin: 0;
    padding-right: 20px;
    font-size: 14px;
}

.cookie-banner a {
    color: #FAD66A;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.cookie-banner .accept-btn {
    background-color: #FAD66A;
    color: #222;
}

.cookie-banner .accept-btn:hover {
    background-color: #eac446;
}

.cookie-banner .info-btn {
    background-color: transparent;
    border: 1px solid #FAD66A;
    color: #FAD66A;
}

.cookie-banner .info-btn:hover {
    background-color: rgba(250, 214, 106, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        padding-right: 0;
        margin-bottom: 15px;
    }
}
