Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { const target = document.querySelector(this.getAttribute('href')); if (target) { e.preventDefault(); target.scrollIntoView({ behavior: 'smooth' }); } }); }); });