Our Cookie Philosophy
We implement a transparent, privacy-preserving cookie framework. All user data is aggregated anonymously and encrypted at rest. We follow ePrivacy Directive compliant practices for cookie usage across our services.
We implement a transparent, privacy-preserving cookie framework. All user data is aggregated anonymously and encrypted at rest. We follow ePrivacy Directive compliant practices for cookie usage across our services.
Strictly necessary cookies for site functionality
Used to optimize site speed and reliability
Help us understand usage patterns to improve experience
Remember your preferences and settings
You can revoke cookie consent at any time
Non-essential cookies are subject to your preferences
// Cookie implementation example
const analyticsCookies = require('secure-cookie-framework');
analyticsCookies.init({
encryptionKey: process.env.ENCRYPTION_KEY,
secure: true,
httpOnly: true,
sameSite: 'strict'
});