Skip to content
document.querySelectorAll('.accordion-toggle').forEach(item => {
item.addEventListener('click', function () {
this.classList.toggle('active');
const content = this.nextElementSibling;
if (content.style.display === 'block') {
content.style.display = 'none';
} else {
content.style.display = 'block';
}
});
});