document.addEventListener('DOMContentLoaded', function() { const ctaButton = document.querySelector('#cta-button'); const createSection = document.querySelector('#create'); if (ctaButton && createSection) { ctaButton.addEventListener('click', function(e) { e.preventDefault(); createSection.scrollIntoView({ behavior: 'smooth' }); }); } });