We’re on a mission to put healthcare back into the hands of women.

Our Vision

This is the world we are working towards
at Flouria.

Imagine a world where women can access support, community and information about their health from their back pocket at all times.

The days of unanswered questions, long wait lists to see specialists, and lifetimes spent living in physical discomfort or pain are gone.

Imagine a world where women can access support, community and information about their health from their back pocket at all times.

This is the world we are working towards
at Flouria.

The days of unanswered questions, long wait lists to see specialists, and lifetimes spent living in physical discomfort or pain are gone.

Our Vision

Imagine a world where women can access support, community and information about their health from their back pocket at all times.

This is the world we are working towards
at Flouria.

The days of unanswered questions, long wait lists to see specialists, and lifetimes spent living in physical discomfort or pain are gone.

Our Vision

Imagine a world where women can access support, community and information about their health from their back pocket at all times.

This is the world we are working towards
at Flouria.

The days of unanswered questions, long wait lists to see specialists, and lifetimes spent living in physical discomfort or pain are gone.

Founding team

Personal experiences taught our founding team that the current system of care for women needs significant innovation. We came together to create a platform that helps women access care and information at scale in a digital, tech-enabled way.

Anna Christie
Co-Founder & CCO

Jeanine van Munster

Co-Founder & CEO

Vlatko Stojkovski
Co-Founder & CTO

Founding team

Personal experiences taught our founding team that the current system of care for women needs significant innovation. We came together to create a platform that helps women access care and information at scale in a digital, tech-enabled way.

Vlatko Stojkovski
Co-Founder & CTO

Anna Christie
Co-Founder & CCO

Jeanine van Munster

Co-Founder & CEO

Founding team

Anna Christie
Co-Founder & CCO

Jeanine van Munster

Co-Founder & CEO

Vlatko Stojkovski
Co-Founder & CTO

Personal experiences taught our founding team that the current system of care for women needs significant innovation. We came together to create a platform that helps women access care and information at scale in a digital, tech-enabled way.

Founding team

Jeanine van Munster

Co-Founder & CEO

Anna Christie
Co-Founder & CCO

Vlatko Stojkovski
Co-Founder & CTO

Personal experiences taught our founding team that the current system of care for women needs significant innovation. We came together to create a platform that helps women access care and information at scale in a digital, tech-enabled way.

Our Experts

Our Experts

We hand select the best of Europe’s forward-thinking, passionate and dedicated women’s health experts. They’re here to guide, support, and empower you with real answers and compassionate care.

Dr Jolijn Huisman MD

Fertility doctor

BIG: 29922853501

Jolijn is a fertility doctor with extensive experience in reproductive medicine. As Head of Medical at Flouria, she supports users directly, oversees medical content, and leads our team of experts. With both professional expertise and personal experience of motherhood, she brings a modern, lifestyle-focused perspective to women’s health, from menstrual cycles to pregnancy.

Dr Lotte van Dijk MD

GP & Menopause specialist

BIG: 19912642001

Dr. Lotte van Dijk is a GP specialising in guiding women through the menopausal transition. She combines medical expertise with a modern, human-centred approach, ensuring women receive care that is accessible, personalised, and science-based. At Flouria, she provides consultations, interprets tests, and creates tailored care plans to support women in navigating perimenopause with confidence.

Nathalie Roost

MD | Physician & perimenopause expert
BIG 19924058401

Nathalie is a physician specialising in hormone therapy and mind–body medicine. Her mission is to guide women toward more balance, vitality, and well-being, especially around menopause. She believes that an integrated approach where lifestyle, stress management, and hormonal balance are considered together forms the foundation for real and sustainable health. That’s why she offers personal guidance in which she looks not only at symptoms, but at the woman as a whole.





Nathalie Roost

MD | Physician & perimenopause expert
BIG 19924058401

Nathalie is a physician specializing in hormone therapy, functional medicine, and mind–body medicine. Her mission is to guide women toward more balance, vitality, and well-being, especially around menopause. She believes that an integrated approach—where lifestyle, stress management, and hormonal balance are considered together—forms the foundation for real and sustainable health. That’s why she offers personal guidance in which she looks not only at symptoms, but at the woman as a whole.

Robine Padberg Hill LCSW

Perinatal psychotherapist

Robine is a perinatal therapist with more than 12 years of experience, specialising in women’s mental health. Having worked extensively in both the United States and the Netherlands, she now focuses on perinatal mental health, using Internal Family Systems (IFS) therapy. Through her practice and her work with Flouria, she helps women heal, build self-compassion, and strengthen their emotional wellbeing.

Renske de Jonge

MD | Lifestyle physician
BIG 5991970040 

Renske is a physician in integrative medicine. Her mission is to help as many people as possible feel healthy, fit, and happy again. She believes that medication should be combined with personalised nutrition and lifestyle advice as a base for the treatment of hormone and chronic health problems.





Renske de Jonge

MD | Lifestyle physician
BIG 5991970040 

Renske is a physician in integrative medicine. Her mission is to help as many people as possible feel healthy, fit, and happy again. She believes that medication should be combined with personalised nutrition and lifestyle advice as a base for the treatment of hormone and chronic health problems.

Dr Laura Leichtenberg MD MSc

Integrative women’s health doctor

BIG: 29925772301

Laura is an integrative medicine physician. She runs her own practice in Amsterdam specialising in women’s health, including hormones, gut health, thyroid function, and neurodiversity. As Lifestyle Doctor at Flouria, she combines medical knowledge with a holistic approach to directly care for women, create content and provide expert guidance that improves long-term health.

Featured in

(function() { const ATTR_KEY = "flouria_attribution_v1"; const SESSION_KEY = "flouria_session_v1"; const APP_DOMAIN = "app.flouria.health"; // First-touch UTMs — stored in localStorage, never overwritten const utmParams = [ "utm_source", "utm_medium", "utm_campaign", "utm_term", "utm_content", "utm_id" ]; // Click IDs — session-only, stored in sessionStorage, always overwritten with latest const clickIdParams = [ "fbclid", // Meta (Facebook / Instagram) "fbadid", // Meta Ad creative ID "gclid", // Google Ads "ttclid", // TikTok "li_fat_id" // LinkedIn ]; const firstTouchFields = ["first_touch_at", "landing_page", "referrer"]; function getStoredAttribution() { try { return JSON.parse(localStorage.getItem(ATTR_KEY) || "{}"); } catch (e) { return {}; } } function storeAttribution(data) { localStorage.setItem(ATTR_KEY, JSON.stringify(data)); } function getSessionClickIds() { try { return JSON.parse(sessionStorage.getItem(SESSION_KEY) || "{}"); } catch (e) { return {}; } } function storeSessionClickIds(data) { sessionStorage.setItem(SESSION_KEY, JSON.stringify(data)); } function captureAttribution() { const existing = getStoredAttribution(); const existingSession = getSessionClickIds(); const urlParams = new URLSearchParams(window.location.search); // --- Persistent first-touch (localStorage) --- const attribution = { first_touch_at: existing.first_touch_at || new Date().toISOString(), landing_page: existing.landing_page || window.location.pathname, referrer: existing.referrer || document.referrer || null }; utmParams.forEach(param => { const value = urlParams.get(param); if (value) { attribution[param] = existing[param] || value; } else if (existing[param]) { attribution[param] = existing[param]; } }); storeAttribution(attribution); // --- Session-only click IDs (sessionStorage) --- const sessionData = { ...existingSession }; clickIdParams.forEach(param => { const value = urlParams.get(param); if (value) { sessionData[param] = value; // always overwrite with the latest click } }); storeSessionClickIds(sessionData); } function decorateUrl(url) { try { const stored = getStoredAttribution(); const session = getSessionClickIds(); const u = new URL(url); utmParams.forEach(param => { if (stored[param] && !u.searchParams.has(param)) { u.searchParams.set(param, stored[param]); } }); firstTouchFields.forEach(param => { if (stored[param] && !u.searchParams.has(param)) { u.searchParams.set(param, stored[param]); } }); clickIdParams.forEach(param => { if (session[param] && !u.searchParams.has(param)) { u.searchParams.set(param, session[param]); } }); return u.toString(); } catch (e) { return url; } } function decorateLinks() { const links = document.querySelectorAll(`a[href*="${APP_DOMAIN}"]`); links.forEach(link => { if (link.dataset.attributionDecorated) return; const original = link.getAttribute("href"); const decorated = decorateUrl(original); if (decorated !== original) { link.setAttribute("href", decorated); } link.dataset.attributionDecorated = "true"; }); } captureAttribution(); decorateLinks(); const observer = new MutationObserver(() => decorateLinks()); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ["href"] }); let currentPath = window.location.pathname; setInterval(() => { if (window.location.pathname !== currentPath) { currentPath = window.location.pathname; decorateLinks(); } }, 500); window.decorateAppUrl = function(url) { return decorateUrl(url); }; })();