.video-section {
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    padding: 4rem 1.5rem;
    transition: all 0.3s ease;
  }

  .video-title {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }

  .video-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -10px;
    left: 25%;
    background: var(--color-octo-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .video-title:hover:after {
    transform: scaleX(1);
  }

  .video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  @media screen and (max-width: 768px) {
    .video-section {
      padding: 2rem 1rem;
    }
    
    .video-container {
      margin: 0 -1rem;
      border-radius: 0;
    }
  }