<style>
  .faq-accordion {
    width: 100%;
  }

  .faq-item {
    margin-bottom: 20px;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
  }

  .faq-question h3 {
    margin: 0;
  }

  .faq-toggle::before {
    content: "+";
    font-weight: bold;
    font-size: 18px;
  }

  .faq-answer {
    display: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: none;
  }

  .faq-item.active .faq-answer {
    display: block;
  }
</style>