Important Links
  // Function to toggle accordion content
  function toggleAccordion(id) {
    const section = document.getElementById(id);
    if (section.style.display === ‘none’ || section.style.display === ”) {
      section.style.display = ‘block’;
    } else {
      section.style.display = ‘none’;
    }
  }
