function scrollToSection(sectionId, event) { event.preventDefault(); var section = document.getElementById(sectionId); if (section) { section.scrollIntoView({ behavior: "smooth" }); } }