Rite of Christian Initiation for Adults (18+)

/* document.addEventListener("DOMContentLoaded", function() { var accordionButtons = document.querySelectorAll(".accordion-button"); accordionButtons.forEach(function(button) { button.addEventListener("click", function() { var content = this.nextElementSibling; if (content.style.display === "block") { content.style.display = "none"; } else { content.style.display = "block"; } }); }); }); */ /* document.addEventListener("DOMContentLoaded", function() { var accordionButtons = document.querySelectorAll(".accordion-button"); accordionButtons.forEach(function(button) { button.addEventListener("click", function() { var content = this.nextElementSibling; var icon = this.querySelector(".accordion-icon"); if (content.style.display === "block") { content.style.display = "none"; icon.textContent = "+"; } else { content.style.display = "block"; icon.textContent = "-"; } }); }); }); */