document.querySelectorAll('.custom-tab').forEach(tab => {
tab.addEventListener('click', function(e) {
e.preventDefault(); // 阻止 Webflow Tabs 預設行為
let targetId = this.getAttribute('data-target');
let targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 50,
behavior: 'smooth'
});
}
});
});