.faq-section {
    margin: 0 auto;
  }
  
  .faq-item {
    padding: 10px 40px;
    border-bottom: solid 3px white;
  }
  
  .faq-item h3 {
    font-size: 24px;
    color: #333;
    cursor: pointer;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: auto;
    overflow: visible;
    transition: max-height 0.3s ease;
  }
  
  .faq-answer p {
    font-size: 16px;
    line-height: 1.5;
    color: #777;
  }

