.video-banner {
  position: sticky;
  min-height: 100vh;
  overflow: hidden;
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay-bg {
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}

.video-overlay {
  position: relative;
  z-index: 1;
  color: white;
  padding: 100px 20px 20px 20px;
  border-radius: 10px;
  width: 100%;
  min-height: 100vh;
}
