.live-page-flex {
    display: flex;
    gap: 40px;
    /* flex-wrap: wrap; */
  }
  
  .left-section {
    width: 67%;
  }
  
  .right-section-live {
    width: 33%;
  }
  
  .right-section-live .sidebar {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .left-section iframe {
    width: 100%;
    height: 70%;
    border-radius: 8px;
  }
  .live-img{
    width: 80%;
    height: 150px;
    margin-top: 20px;
  }
  
  /* Responsive Fix */
  @media (max-width: 748px) {
    .live-page{
      padding-top: 60px;
    }
    .live-page-flex {
      flex-direction: column;
      gap: 20px;
    }
    .left-section,
    .right-section-live {
      width: 100%;
    }
    .left-section iframe {
      height: 500px;  /* mobile-friendly height */
    }
    .image img {
    margin-top: 30px;
    }
  }
  
  