Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

document.querySelectorAll('.dropdown-toggle').forEach(toggle => { toggle.addEventListener('click', function() { this.classList.toggle('active'); const dropdown = this.nextElementSibling; dropdown.style.display = dropdown.style.display === 'flex' ? 'none' : 'flex'; }); });