Skip to content
});
// Toggle the clicked section
heading.classList.toggle('active');
const content = heading.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
});
});