.acf-faq-widget {
    display: flex;
    flex-direction: column;
}
.acf-faq-widget .faq-answer {
  display: none;
  padding: 8px 0;
}

.acf-faq-widget .faq-answer p {
    margin: 0;
}

.acf-faq-widget .faq-question {
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.acf-faq-widget .faq-icon {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.acf-faq-widget .faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.acf-faq-widget .faq-question.active {
  color: #0073e6;
}
