Cookie Policy

We use cookies to ensure you get the best experience on our website. By browsing this site, you agree to the use of cookies in accordance with our policies.

🔒 Essential Cookies

These cookies are required for core website functionality. They enable basic features such as secure login and preferences.

📊 Analytics Cookies

Analytics cookies collect aggregate data about website usage. This helps us improve user experience and performance.

🧠 Preference Cookies

Preference cookies remember your choices, such as language or region settings, to customise your browsing experience.

🤝 Third-Party Cookies

We may partner with third parties to provide enhanced features. Their cookies are subject to their own privacy policies.

Technical Disclosure

Cookies may include unique identifiers and session tokens. We use secure HTTP-only cookies with SameSite=Strict for critical sessions.

// Cookie Settings
const cookieSettings = {
  secure: true,
  sameSite: 'Strict',
  expires: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000)
}

// Consent Management
function checkConsent() {
  if (localStorage.getItem('consent') !== 'granted') {
    showBanner();
  }
}
                    

Manage Your Cookie Preferences