.faq {

  p {
    margin-bottom: 1.2em;
    line-height: 1.6;
  }


  strong {
    font-weight: 700;
  }
  h5 {
    line-height: 200%;
    font-weight: 700;
  }

  .faq-item {
    border: 1px solid #ddd;
    margin: 10px 0;
    border-radius: 6px;
    overflow: hidden;
  }

  .faq-question {
    background: #f9f9f9;
    cursor: pointer;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-question::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s;
  }

  .faq-question.active::after {
    content: "−";
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-answer.open {
    padding: 15px 20px;
    max-height: 500px;
  }

}
