/* Video Section */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-container video {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
