↑ Back to Top
document.querySelectorAll(".faq-question").forEach(function (question) {
question.addEventListener("click", function () {
const answer = this.nextElementSibling;
answer.style.display = answer.style.display === "block" ? "none" : "block";
});
});