/*! * Cookie Consent Banner * High and Over Limited trading as Dietitians In Business * Compliant with UK GDPR and Data (Use and Access) Act 2025 * Paste this entire script into Kajabi: Settings > Site Scripts > Footer Scripts */ (function () { var CONSENT_KEY = 'dib_cookie_consent'; var CONSENT_VERSION = '1'; function getConsent() { try { var stored = localStorage.getItem(CONSENT_KEY); if (stored) return JSON.parse(stored); } catch (e) {} return null; } function setConsent(preferences) { try { preferences.version = CONSENT_VERSION; preferences.date = new Date().toISOString(); localStorage.setItem(CONSENT_KEY, JSON.stringify(preferences)); } catch (e) {} } function removeBanner() { var banner = document.getElementById('dib-cookie-banner'); if (banner) { banner.style.opacity = '0'; banner.style.transform = 'translateY(20px)'; setTimeout(function () { if (banner.parentNode) banner.parentNode.removeChild(banner); }, 300); } } function acceptAll() { setConsent({ analytics: true, affiliate: true, all: true }); removeBanner(); } function savePreferences() { var analytics = document.getElementById('dib-analytics-toggle').checked; var affiliate = document.getElementById('dib-affiliate-toggle').checked; setConsent({ analytics: analytics, affiliate: affiliate, all: false }); removeBanner(); } function togglePreferences() { var panel = document.getElementById('dib-prefs-panel'); var isVisible = panel.style.display === 'block'; panel.style.display = isVisible ? 'none' : 'block'; var btn = document.getElementById('dib-manage-btn'); btn.textContent = isVisible ? 'Manage preferences' : 'Hide preferences'; } function injectStyles() { var css = [ '#dib-cookie-banner {', ' position: fixed;', ' bottom: 24px;', ' left: 50%;', ' transform: translateX(-50%) translateY(0);', ' width: calc(100% - 48px);', ' max-width: 680px;', ' background: #ffffff;', ' border-radius: 12px;', ' box-shadow: 0 8px 40px rgba(0,0,0,0.14);', ' z-index: 99999;', ' font-family: Arial, sans-serif;', ' font-size: 14px;', ' color: #3a3a3a;', ' opacity: 0;', ' transition: opacity 0.35s ease, transform 0.35s ease;', ' border-top: 4px solid #669D59;', '}', '#dib-cookie-banner.dib-visible {', ' opacity: 1;', '}', '#dib-banner-inner {', ' padding: 24px 28px 20px;', '}', '#dib-cookie-banner h3 {', ' margin: 0 0 10px;', ' font-size: 16px;', ' font-weight: 700;', ' color: #2a2a2a;', ' letter-spacing: -0.01em;', '}', '#dib-cookie-banner p {', ' margin: 0 0 16px;', ' line-height: 1.55;', ' color: #555;', ' font-size: 13.5px;', '}', '#dib-cookie-banner a {', ' color: #669D59;', ' text-decoration: underline;', '}', '#dib-btn-row {', ' display: flex;', ' flex-wrap: wrap;', ' gap: 10px;', ' align-items: center;', '}', '.dib-btn {', ' display: inline-block;', ' padding: 10px 20px;', ' border-radius: 6px;', ' font-size: 13.5px;', ' font-weight: 600;', ' cursor: pointer;', ' border: none;', ' transition: opacity 0.2s;', ' font-family: Arial, sans-serif;', '}', '.dib-btn:hover { opacity: 0.85; }', '.dib-btn-primary {', ' background: #669D59;', ' color: #ffffff;', '}', '.dib-btn-secondary {', ' background: transparent;', ' color: #669D59;', ' border: 1.5px solid #669D59;', '}', '#dib-prefs-panel {', ' display: none;', ' border-top: 1px solid #eee;', ' padding: 20px 28px 20px;', ' background: #fafaf9;', ' border-radius: 0 0 10px 10px;', '}', '.dib-toggle-row {', ' display: flex;', ' align-items: flex-start;', ' justify-content: space-between;', ' gap: 16px;', ' margin-bottom: 16px;', '}', '.dib-toggle-row:last-of-type { margin-bottom: 20px; }', '.dib-toggle-label {', ' flex: 1;', '}', '.dib-toggle-label strong {', ' display: block;', ' font-size: 13.5px;', ' color: #2a2a2a;', ' margin-bottom: 3px;', '}', '.dib-toggle-label span {', ' font-size: 12.5px;', ' color: #777;', ' line-height: 1.4;', '}', '.dib-switch {', ' position: relative;', ' display: inline-block;', ' width: 42px;', ' height: 24px;', ' flex-shrink: 0;', ' margin-top: 2px;', '}', '.dib-switch input { opacity: 0; width: 0; height: 0; }', '.dib-slider {', ' position: absolute;', ' cursor: pointer;', ' top: 0; left: 0; right: 0; bottom: 0;', ' background: #ccc;', ' border-radius: 24px;', ' transition: 0.25s;', '}', '.dib-slider:before {', ' position: absolute;', ' content: "";', ' height: 18px;', ' width: 18px;', ' left: 3px;', ' bottom: 3px;', ' background: white;', ' border-radius: 50%;', ' transition: 0.25s;', '}', 'input:checked + .dib-slider { background: #669D59; }', 'input:checked + .dib-slider:before { transform: translateX(18px); }', '.dib-always-on {', ' font-size: 12px;', ' color: #669D59;', ' font-weight: 600;', ' margin-top: 3px;', ' flex-shrink: 0;', '}', '@media (max-width: 480px) {', ' #dib-cookie-banner { bottom: 0; left: 0; transform: none; width: 100%; max-width: 100%; border-radius: 12px 12px 0 0; }', ' #dib-banner-inner { padding: 20px 18px 16px; }', ' #dib-prefs-panel { padding: 16px 18px 16px; }', '}' ].join('\n'); var style = document.createElement('style'); style.textContent = css; document.head.appendChild(style); } function buildBanner() { var banner = document.createElement('div'); banner.id = 'dib-cookie-banner'; banner.setAttribute('role', 'dialog'); banner.setAttribute('aria-label', 'Cookie consent'); banner.setAttribute('aria-live', 'polite'); banner.innerHTML = [ '
', '

We use cookies

', '

', ' This website uses cookies to help it run smoothly and to give you a better experience.', ' Strictly necessary cookies are always on. You can opt out of analytics and affiliate', ' tracking cookies using the preferences below.', ' ', ' Privacy Notice', ' .', '

', '
', ' ', ' ', '
', '
', '
', '
', '
', ' Strictly necessary cookies', ' Essential for the website to function. Cannot be switched off.', '
', ' Always on', '
', '
', '
', ' Analytics and functionality cookies', ' Help us understand how visitors use the site and improve your experience.', '
', ' ', '
', '
', '
', ' Affiliate tracking cookies', ' Track referrals and attribute sales to partners.', '
', ' ', '
', '
', ' ', '
', '
' ].join(''); return banner; } window.dibCookieAcceptAll = acceptAll; window.dibCookieTogglePrefs = togglePreferences; window.dibCookieSavePrefs = savePreferences; window.dibGetConsent = getConsent; function init() { var existing = getConsent(); if (existing) return; injectStyles(); var banner = buildBanner(); document.body.appendChild(banner); setTimeout(function () { banner.classList.add('dib-visible'); }, 600); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); } else { init(); } })();

Privacy Notice

Your privacy is important to us. This notice explains what personal information High and Over Limited trading as Dietitians In Business collects about you, why we collect it, how we use it, and your rights.

1. Who We Are

High and Over Limited trading as Dietitians In Business

Address:
Suite 6, The Workshop
Eastbourne
East Sussex
BN21 3FG

Email:
[email protected]

Professional Registration:
Registered Dietitian (HCPC DT07650)

2. What Information We Collect About You

We may collect:

  • Name
  • Email address
  • Telephone number
  • Instagram handle
  • Business information
  • Programme participation information
  • Payment information
  • Communication records
  • Marketing preferences

3. Why We Collect It and Our Lawful Basis

We collect personal information to:

  • Deliver coaching services
  • Provide courses and programmes
  • Process payments
  • Respond to enquiries
  • Send newsletters where consent has been provided
  • Improve our services

Our lawful bases include contract, consent and legitimate interests.

4. Special Category Data — Health Information

In limited circumstances you may choose to share health-related information with us. Health information receives additional protection under UK GDPR and will only be processed where there is an appropriate lawful basis for doing so.

5. How Long We Keep Your Information

We retain client records for 8 years from the date of last engagement unless a longer retention period is required by law.

6. Who We Share Your Information With

We may share information with:

  • Payment service providers
  • Scheduling providers
  • Cloud storage providers
  • Email marketing providers
  • Professional contractors working on our behalf
  • Professional advisers

7. International Transfers

Some service providers may process personal data outside the UK. Where this happens, safeguards are used to help protect your information.

8. Your Rights

You have the right to:

  • Be informed about how your data is used
  • Access your personal data
  • Correct inaccurate data
  • Request deletion where appropriate
  • Restrict processing
  • Receive your data in a portable format
  • Object to certain processing activities
  • Challenge automated decision making where applicable

9. Cookies

Our website uses cookies to help it function and to improve your experience. The cookies we use fall into three categories:

Strictly necessary cookies -- these are essential for the website to work and cannot be switched off.

Analytics and functionality cookies -- these help us understand how visitors use the site and improve performance. These are on by default but you can opt out at any time using the cookie preferences tool on this website.

Affiliate tracking cookies -- these track referrals and attribute sales to partners. These are on by default but you can opt out at any time using the cookie preferences tool on this website.

You can manage your cookie preferences at any time by clicking the cookie settings link.

10. How to Contact Us

Email:
[email protected]

Postal Address:
Suite 6, The Workshop
Eastbourne
East Sussex
BN21 3FG

11. How to Raise a Concern With Us Directly

If you have a concern about how we handle your personal data, please contact us first at [email protected].

We will acknowledge your complaint within 30 days.

12. How to Complain to the ICO

If you remain unhappy with our response, you may contact the Information Commissioner's Office:

ico.org.uk/concerns

This privacy notice was last updated June 2026. We will notify you of any significant changes.