.schema-faq-answer {
  display: none;
  margin: 5px 0;
}
.schema-faq-question {
  cursor: pointer;
  position: relative;
  padding-left: 15px;
}
.schema-faq-question.active + .schema-faq-answer {
  display: block;
}

.schema-faq-question::before {
  content: "▶";
  position: absolute;
  font-size: 12px;
  left: 0;
  top: 0;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.schema-faq-question.active::before {
  transform: rotate(90deg);
}

.schema-faq-question.active + .schema-faq-answer {
  display: block;
}