Aurelivo.

Open notebook

Questions deserve room to breathe.

Here are practical answers before you choose a learning path.

Are Aurelivo courses financial advice?

No. They provide general educational information and reflection tools, not individualized investment, tax, legal, or financial advice.

Who are the courses for?

They are for adults who want clearer personal wealth management concepts and a structured way to ask better questions.

Do I need prior investing knowledge?

No. Beginner courses introduce vocabulary and frameworks before more advanced topics.

What is Fallows?

Fallows is a browser-based list where you can save course IDs for later review. It uses localStorage on your device.

How does the cart work?

The cart stores course IDs and quantities locally so you can review an example order without a live payment processor.

Are results guaranteed?

No. Learning outcomes depend on your circumstances, practice, decisions, and professional guidance where appropriate.

Can groups learn together?

Yes. Contact us to discuss a guided cohort, workplace session, or community learning format.

How do I request accessibility support?

Use the contact form and describe the format or access support you need; the team will respond thoughtfully.

Ask another question
`; document.querySelector('header').innerHTML = headerHTML; document.querySelector('footer').innerHTML = footerHTML; // Theme const themeBtn = document.getElementById('themeToggle'); function applyTheme(mode) { if (mode === 'light') { document.body.classList.add('bg-slate-100', 'text-slate-950'); document.body.classList.remove('bg-slate-950', 'text-slate-100'); themeBtn.textContent = 'Dark mode'; } else { document.body.classList.remove('bg-slate-100', 'text-slate-950'); document.body.classList.add('bg-slate-950', 'text-slate-100'); themeBtn.textContent = 'Light mode'; } localStorage.setItem('aurelivo-theme', mode); } const savedTheme = localStorage.getItem('aurelivo-theme') || 'dark'; applyTheme(savedTheme); themeBtn.addEventListener('click', () => { const newMode = document.body.classList.contains('bg-slate-950') ? 'light' : 'dark'; applyTheme(newMode); }); // Modals const loginModal = document.getElementById('loginModal'); const registerModal = document.getElementById('registerModal'); document.getElementById('loginOpen').addEventListener('click', e => { e.preventDefault(); loginModal.classList.remove('hidden'); }); document.getElementById('registerOpen').addEventListener('click', e => { e.preventDefault(); registerModal.classList.remove('hidden'); }); document.getElementById('loginClose').addEventListener('click', () => loginModal.classList.add('hidden')); document.getElementById('registerClose').addEventListener('click', () => registerModal.classList.add('hidden')); document.getElementById('loginForm').addEventListener('submit', e => { e.preventDefault(); alert('Signed in successfully.'); loginModal.classList.add('hidden'); }); document.getElementById('registerForm').addEventListener('submit', e => { e.preventDefault(); alert('Account created. Welcome!'); registerModal.classList.add('hidden'); }); // Cookie banner (from footer script) const banner = document.getElementById('cookieBanner'); const acceptBtn = document.getElementById('cookieAccept'); const storageKey = 'aurelivo-cookie-consent'; function showBanner() { banner.classList.remove('hidden'); } if (!localStorage.getItem(storageKey)) setTimeout(showBanner, 1800); acceptBtn.addEventListener('click', () => { localStorage.setItem(storageKey, 'true'); banner.classList.add('hidden'); }); })();