.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
}

.cookie-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.cookie-buttons button {
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
}

.accept-cookies {
    background: #042f2e;
    color: white;
}

.reject-cookies {
    background: #6c757d;
    color: white;
}

@media (max-width: 992px) {
    .cookie-buttons button {
        margin-bottom: 5px;
    }

    .cookie-buttons {
        display: flex;
        flex-direction: column;
    }
}
