 /* Video container with increased aspect ratio */
  .video-container {
    position: relative;
    padding-bottom: 70%;
    /* Taller aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }

  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Adjusting for smaller screens */
  @media (max-width: 992px) {
    .video-container {
      padding-bottom: 80%;
      /* Slightly taller aspect ratio for tablets */
    }
  }

  @media (max-width: 768px) {
    .video-container {
      padding-bottom: 100%;
      /* Square aspect ratio for mobile screens */
    }
  }

  /* Form styling */
  .career-cards {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Button responsive */
  .btn-block {
    width: 100%;
  }