// FAQ Page JavaScript - Initialize interactive FAQ functionality export function init() { // Initialize FAQ functionality using the built-in interactive library // The setupFAQs function is automatically called by the main interactive library // when it finds elements with data-landingsite-faq attributes // Add any additional FAQ-specific functionality here if needed console.log('FAQ page initialized'); } export function teardown() { // Clean up any custom event listeners or intervals if added console.log('FAQ page teardown completed'); }