document.addEventListener('DOMContentLoaded', function () { if (window.location.pathname.startsWith('/st_tours/')) { const elements = document.querySelectorAll('li, span, p'); elements.forEach(element => { element.style.fontFamily = "Helvetica"; element.style.fontWeight = "400"; element.style.fontSize = "16px"; element.style.lineHeight = "24px"; element.style.color = "#000"; }); } });