CoreCanvas Studio

Legal information

Privacy Policy

Effective date: January 1, 2025

1. Scope

This policy explains how CoreCanvas Studio handles information when you browse the website, save a course, use the cart, or contact the studio. It applies to this website and its related support communications.

2. Information you provide

If you contact us, we may receive your name, email address, phone number, message, and any details you choose to include. Please do not send sensitive personal information through the contact form.

3. Browser storage

The site uses localStorage in your browser to remember theme preference, cookie consent, followed course IDs, and cart quantities. This information is stored on your device and is not automatically sent to CoreCanvas Studio.

4. How information is used

Information submitted through support channels is used to respond to questions, provide course guidance, maintain service quality, and address technical issues. We do not sell contact information or use it to make medical, financial, or eligibility decisions.

5. Sharing and service providers

We may use carefully selected hosting, email, security, or technical service providers to operate the website. They may process information only as needed for their documented service. We disclose information when required by law or when needed to protect the website and its users.

6. Retention and security

We retain correspondence only as long as reasonably needed for support, business records, dispute resolution, and legal obligations. We use reasonable administrative and technical safeguards, but no internet transmission or storage system can be guaranteed completely secure.

7. Your choices

You can clear localStorage through your browser settings, decline nonessential consent where offered, and contact us to request access, correction, or deletion of correspondence, subject to applicable law.

8. Children and changes

The service is intended for a general audience and is not directed at children. We may update this policy when practices or legal requirements change; the effective date above will be revised when an update is published.

9. Contact

For privacy questions, email [email protected] or use the contact page.

`; const footerHTML = ` `; document.querySelector('header').innerHTML = headerHTML; document.querySelector('footer').innerHTML = footerHTML; // Theme toggle const themeBtn = document.querySelector('[data-theme-toggle]'); if (themeBtn) { themeBtn.addEventListener('click', () => { document.documentElement.classList.toggle('dark'); localStorage.setItem('corecanvas-theme', document.documentElement.classList.contains('dark') ? 'dark' : 'light'); }); if (localStorage.getItem('corecanvas-theme') === 'dark') document.documentElement.classList.add('dark'); } // Mobile menu const mobileBtn = document.querySelector('[data-mobile-toggle]'); const mobileMenu = document.querySelector('[data-mobile-menu]'); if (mobileBtn && mobileMenu) { mobileBtn.addEventListener('click', () => mobileMenu.classList.toggle('hidden')); } // Cookie banner const banner = document.querySelector('[data-cookie-banner]'); if (localStorage.getItem('corecanvas-cookie-consent') === 'yes') banner?.remove(); document.querySelector('[data-cookie-close]')?.addEventListener('click', () => { localStorage.setItem('corecanvas-cookie-consent', 'yes'); banner?.remove(); }); })();