// Check if GCLID is in the URL
let gclid = getQueryParam('gclid');
// Store GCLID if present
if (gclid) {
storeParam('gclid', gclid);
}
// Retrieve stored GCLID
let storedGclid = getStoredParam('gclid');
// Append GCLID to internal links
if (storedGclid) {
appendParamToLinks('gclid', storedGclid);
}