.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 9999;
    font-size: 0.9rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content span {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-button-container {
    display: flex;
    justify-content: flex-end;
    min-width: 120px;
}

.accept-button {
    background-color: var(--secondary-color);
    border: none;
    color: var(--main-color); 
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: .33s all ease;
}

.accept-button:hover {
    background-color: var(--main-color);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-button-container {
        justify-content: center;
    }
}