.header-video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .header-video-wrapper {
        height: 420px;      /* change to adapt */
    }
}

#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #212529;
    color: #fff;
    padding: 15px;
    z-index: 99999;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent button {
    background: #0d6efd;
    color: #fff;
    border: 0;
    padding: 8px 20px;
    white-space: nowrap;
    cursor: pointer;
}

@media (max-width: 576px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
}