document.addEventListener('DOMContentLoaded', function() { const faqQuestions = document.querySelectorAll('.faq-question'); faqQuestions.forEach(function(question) { question.addEventListener('click', function() { const answer = question.nextElementSibling; // Find the answer answer.style.display = answer.style.display === 'block' ? 'none' : 'block'; // Toggle visibility }); }); });