document.querySelectorAll('.accordion-header').forEach((header) => {header.addEventListener('click', () => {const isExpanded = header.getAttribute('aria-expanded') === 'true';const content = document.querySelector(`#${header.getAttribute('aria-controls')}`);// Close all other accordion itemsdocument...