document.addEventListener('DOMContentLoaded', function() {
if (!window.location.pathname.includes('breath-spirit')) {
const videoEmbeds = document.querySelectorAll('iframe[src*="vidzflow"]');
videoEmbeds.forEach(embed => {
embed.style.display = 'none';
});
}
});