window.addEventListener('load', function() {
const hash = window.location.hash;
if (hash) {
const interval = setInterval(function() {
const el = document.querySelector(hash);
if (el) {
el.scrollIntoView({ behavior: 'smooth' });
clearInterval(interval);
}
}, 100);
}
});