// Cookie Consent Banner (function () { if (localStorage.getItem('cookieConsent') === 'true') return; const banner = document.createElement('div'); banner.className = 'cookie-consent-banner'; banner.innerHTML = `
`; document.body.appendChild(banner); banner.querySelector('.accept').onclick = function () { localStorage.setItem('cookieConsent', 'true'); banner.remove(); }; banner.querySelector('.decline').onclick = function () { banner.remove(); }; })(); const style = document.createElement('style'); style.innerHTML = ` `; document.head.appendChild(style);