<script>
document.addEventListener("DOMContentLoaded", function () {
const hash = window.location.hash;
if (hash) {
const element = document.querySelector(hash);
if (element) {
setTimeout(() => {
window.scrollTo({
top: element.offsetTop + 2000,
behavior: "smooth"
});
}, 100);
}
}
});
</script>