.video-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .section-title {
      color: var(--dark-brown);
      font-family: var(--head-font);
      font-weight: 700;
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 4px;
      background-color: var(--yellow);
      transition: width 0.3s ease;
    }

    .video-section:hover .section-title::after {
      width: 70px;
    }

    .video-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 20px;
      border-bottom: 3px solid var(--yellow);
      transition: all 0.3s ease;
      text-align: center;
    }

    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .video-card iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 8px;
      border: 2px solid var(--light-brown);
    }

    .video-name {
      color: var(--dark-brown);
      font-family: var(--head-font);
      font-weight: 600;
      font-size: 18px;
      margin: 15px 0 5px;
    }

    .video-info {
      color: var(--brown);
      font-family: var(--body-font);
      font-size: 14px;
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .video-name {
        font-size: 16px;
      }
      .video-info {
        font-size: 12px;
      }
      .video-card iframe {
        aspect-ratio: 16 / 9;
      }
    }

    @media (max-width: 576px) {
      .video-card {
        padding: 15px;
      }
      .section-title {
        font-size: 24px;
      }
      .video-card iframe {
        aspect-ratio: 4 / 3;
      }
    }