.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 30px auto; /* Add space above and below the video */
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Tablet styles */
  @media (min-width: 768px) {
    .video-container {
      max-width: 85%;
      margin: 40px auto; /* More space on tablets */
    }
  }
  
  /* Desktop styles */
  @media (min-width: 1024px) {
    .video-container {
      max-width: 70%; /* Makes video bigger but not full-width on desktop */
      margin: 50px auto; /* Even more space on desktop */
    }
  }