document.querySelectorAll('a.nav-link').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const targetId = this.getAttribute('href'); const targetElement = document.querySelector(targetId); if (targetElement) { window.scrollTo({ top: targetElement.offsetTop - 70, // Adjust for sticky navbar height behavior: 'smooth' }); } }); });