

.faq-container {
    width: 50%;
    margin: 0 auto;
  }
  
  .faq-answer {
    display: none;
    padding: 10px;
    border-left: 5px solid #00b0ff;
    background-color: #f5f5f5;
    margin-top: 10px;
  }
  
  .faq-question {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .faq-question:after {
    content: "+";
    float: right;
    font-size: 20px;
    margin-left: 10px;
  }
  
  .faq-question.active:after {
    content: "-";
  }
  
  .faq-question.active {
    background-color: #00b0ff;
    color: #fff;
  }

  .video-container {
    width: 50%;
    margin: 0 auto;
    text-align: center;
  }
  
  #video-player {
    width: 100%;
  }

  #h1video {
    background: linear-gradient(orange, red);
    width: 50%;
  }
  
  