document.addEventListener('DOMContentLoaded', function() { const getStartedBtn = document.querySelector('.get-started-btn'); if (getStartedBtn) { getStartedBtn.addEventListener('click', function(e) { e.preventDefault(); document.querySelector(this.getAttribute('href')).scrollIntoView({ behavior: 'smooth' }); }); } });