{"id":506,"date":"2025-04-03T08:52:29","date_gmt":"2025-04-03T08:52:29","guid":{"rendered":"https:\/\/youandshe.nl\/about\/"},"modified":"2025-09-29T10:25:26","modified_gmt":"2025-09-29T10:25:26","slug":"about","status":"publish","type":"page","link":"https:\/\/youandshe.nl\/en\/about\/","title":{"rendered":"About"},"content":{"rendered":"\r\n<div class=\"eye-block hero-wrapper alignfull \"\r\n     style=\"background-image: url('https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/achtergrond-paars.jpg')\">\r\n\r\n    <section class=\"hero\">\r\n\r\n        <div class=\"hero__topbar\">\r\n            <a href=\"\" class=\"hero__branding\">\r\n                <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/youandshe-logo-white.svg\" alt=\"Logo\">\r\n            <\/a>\r\n            <a href=\"tel:0614917101\" class=\"hero__contact\">\r\n                <i class=\"fa-sharp fa-regular fa-phone\"><\/i>\r\n            <\/a>\r\n        <\/div>\r\n\r\n        <div class=\"hero__content\">\r\n            <p class=\"hero__subtitle\"><\/p>\r\n                        <h1 class=\"hero__title\">\r\n                <strong>Meet the faces behind<\/strong><br> You &amp; SHE\n            <\/h1>\r\n                            <small class=\"scroll-button\"><i class=\"fa-sharp fa-solid fa-computer-mouse me-2\"><\/i>scroll<\/small>\r\n                        <\/div>\r\n\r\n        <div class=\"canvas-wrapper\">\r\n            <div id=\"hero-three-canvas\"><\/div>\r\n        <\/div>\r\n\r\n    <\/section>\r\n\r\n<\/div>\r\n\r\n<script type=\"module\">\r\n    import * as THREE from 'three';\r\n    import {GLTFLoader} from 'three\/addons\/loaders\/GLTFLoader.js';\r\n    import {RoomEnvironment} from 'three\/addons\/environments\/RoomEnvironment.js';\r\n    import { RGBELoader } from 'three\/addons\/loaders\/RGBELoader.js';\r\n\r\n\r\n    const renderer = new THREE.WebGLRenderer({alpha: true, antialias: true});\r\n    const scene = new THREE.Scene();\r\n    const pmremGenerator = new THREE.PMREMGenerator(renderer);\r\n    \/\/ scene.environment = pmremGenerator.fromScene(new RoomEnvironment(), 100).texture;\r\n\r\n    new RGBELoader()\r\n        .setPath('https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/hdr\/')\r\n        .load('lonely_road_afternoon_puresky_1k.hdr', function (texture) {\r\n            const envMap = pmremGenerator.fromEquirectangular(texture).texture;\r\n            scene.environment = envMap;\r\n            texture.dispose();\r\n            pmremGenerator.dispose();\r\n        });\r\n\r\n    const camera = new THREE.PerspectiveCamera(75, window.innerWidth \/ window.innerHeight, 0.1, 1000);\r\n    camera.position.z = 4;\r\n    camera.position.x = -1.5;\r\n    camera.position.y = -0.5;\r\n    camera.rotation.y = -Math.PI \/ 10;\r\n    if (window.innerWidth <= 768) {\r\n        camera.position.z = 6;\r\n        camera.position.x = -2;\r\n        camera.position.y = -.5;\r\n        camera.fov = 55;\r\n    } else {\r\n        camera.position.z = 4;\r\n        camera.fov = 55;\r\n    }\r\n    camera.updateProjectionMatrix();\r\n\r\n    const container = document.getElementById('hero-three-canvas');\r\n    renderer.setSize(window.innerWidth, window.innerHeight);\r\n    renderer.setClearColor(0x000000, 0);\r\n    container.appendChild(renderer.domElement);\r\n\r\n    window.addEventListener('resize', () => {\r\n        const width = window.innerWidth;\r\n        const height = window.innerHeight;\r\n        renderer.setSize(width, height);\r\n        camera.aspect = width \/ height;\r\n        camera.updateProjectionMatrix();\r\n    });\r\n\r\n    const customMaterial = new THREE.MeshPhysicalMaterial({\r\n        color: 0x000000,\r\n        roughness: 0,\r\n        metalness: 0,\r\n        transmission: 1,\r\n        thickness: 0.1,\r\n        transparent: true,\r\n        opacity: 1,\r\n        clearcoat: 0,\r\n        clearcoatRoughness: 0\r\n    });\r\n\r\n    \r\n    const modelPaths = {\r\n        consultancy: 'https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/handshake-3dmodel.gltf',\r\n        academy: 'https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/laptop-file-3dmodel.gltf',\r\n        social: 'https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/user-brain-3dmodel.gltf',\r\n        about_why: 'https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/comments-3dmodel.gltf',\r\n        contact: 'https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/phone-3dmodel.gltf',\r\n        other: 'https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/logo-3dmodel.gltf',\r\n    };\r\n\r\n    const loader = new GLTFLoader();\r\n    loader.load(modelPaths['other'], (gltf) => {\r\n        const model = gltf.scene;\r\n        scene.add(model);\r\n\r\n        model.traverse((child) => {\r\n            if (child.isMesh) {\r\n                child.material = customMaterial;\r\n            }\r\n        });\r\n\r\n        model.position.set(0, -.5, 0);\r\n        model.rotation.x = Math.PI \/ -7;\r\n\r\n        if (window.innerWidth <= 768) {\r\n            model.scale.set(30, 30, 30);\r\n        } else {\r\n            model.scale.set(50, 50, 50);\r\n        }\r\n\r\n        addIdleAnimation(model);\r\n    });\r\n\r\n    function addIdleAnimation(model) {\r\n        gsap.to(model.position, {\r\n            duration: 7,\r\n            y: \"+=0.2\",\r\n            repeat: -1,\r\n            yoyo: true,\r\n            ease: \"power1.inOut\",\r\n            delay: 0,\r\n        });\r\n        gsap.to(model.rotation, {\r\n            duration: 5,\r\n            x: \"+=0.2\",\r\n            repeat: -1,\r\n            yoyo: true,\r\n            ease: \"power1.inOut\",\r\n            delay: 0,\r\n        });\r\n    }\r\n\r\n    \r\n\r\n    function animate() {\r\n        requestAnimationFrame(animate);\r\n        renderer.render(scene, camera);\r\n    }\r\n\r\n    animate();\r\n<\/script>\r\n\r\n\r\n\r\n<div class=\"eye-block empty-space empty-space--large pt-md-5 pb-md-5 pt-4 pb-4\" ><\/div>\n<div class=\"ghostkit-grid ghostkit-grid-gap-md ghostkit-grid-justify-content-center fade-in-animation\"><div class=\"ghostkit-grid-inner\">\n<div class=\"ghostkit-col ghostkit-col-md-12 ghostkit-col-8\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\n<h2 class=\"wp-block-heading has-text-align-left\" id=\"het-verhaal-achter-you-she\">The Story behind You &amp; SHE<\/h2>\n\n\n\n<p><strong>You &amp; SHE<\/strong> was born from the creative minds and shared passion of Ilona and Roel. In 2016, Ilona started her company <strong>IV BioCheck<\/strong>, specializing in biological safety. The demand for her expertise grew so rapidly that the name and form no longer sufficed, and the company became too large for one person.  <\/p>\n\n\n\n<p>After many inspiring conversations and walks, Ilona and Roel\u2014now married\u2014decided to join forces. With a shared vision on safety, health, and people-focused work, they founded <strong>You &amp; SHE<\/strong> together. <\/p>\n\n\n\n<p>Today, You &amp; SHE has grown into a powerful team of specialists supporting organizations with advice, training, and tailored solutions in biological safety, occupational safety, health, and emergency response.<\/p>\n\n\n\n<p>At You &amp; SHE, it's about more than just following rules. We make safety and health understandable, practical, and personal. With practice-oriented training, smart advice, and a down-to-earth approach, we truly help organizations move forward.  <\/p>\n\n\n\n<p>Whether it's about emergency response, risk analyses, safe lab work, or setting up a crisis organization\u2014we stand by your side. Not as standard advisors, but as engaged experts with an eye for your people and your practice. <\/p>\n<\/div><\/div>\n<\/div><\/div>\n\r\n<div class=\"eye-block empty-space empty-space--large pt-md-5 pb-md-5 pt-4 pb-4\" ><\/div>\r\n    <div class=\"eye-block photo-block \">\r\n        <div class=\"photo-block__container\">\r\n\r\n                            <div class=\"photo-block__image only\">\r\n                    <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/08\/11.jpg\" alt=\"Een teamfoto van het You &#038; SHE team\">\r\n                <\/div>\r\n\r\n                    <\/div>\r\n    <\/div>\r\n\r\n<div class=\"eye-block empty-space empty-space--large pt-md-5 pb-md-5 pt-4 pb-4\" ><\/div>\r\n<div class=\"eye-block lead\">\r\n            <div class=\"row d-flex align-items-center\">\r\n            <div class=\"col-12 col-lg-6\">\r\n                <div class=\"lead__image\">\r\n                    <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/08\/12-1.jpg\" alt=\"Een kale man met een blauw jasje en een vrouw met een bril en een wit overhemd lopen lachend samen een trap op. De man draagt een bruine schoudertas.\"\/>\r\n                <\/div>\r\n            <\/div>\r\n            <div class=\"col-12 col-lg-6\">\r\n                <div class=\"lead__content\">\r\n                    <h2>&#8220;Together, we build work environments where safety works and health endures.&#8221;\n<\/h2>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n        <\/div>\r\n\r\n\r\n<div class=\"eye-block empty-space empty-space--large pt-md-5 pb-md-5 pt-4 pb-4\" ><\/div>\r\n<div class=\"eye-block team-group fade-in-animation\">\r\n    <div class=\"team-group--label\">\r\n        <p>Ons team<\/p>\r\n    <\/div>\r\n    <h2>Meet our team<\/h2>\r\n    <div class=\"team-group--image\">\r\n        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/08\/13.jpg\" alt=\"Een teamfoto van de teamleden van You &#038; SHE, op blauwe achtergrond.\">\r\n    <\/div>\r\n<\/div>\r\n\r\n\r\n\r\n<div class=\"eye-block empty-space empty-space--large pt-md-5 pb-md-5 pt-4 pb-4\" ><\/div>\r\n<div class=\"team-members-wrapper\">\r\n    <div class=\"team-members__sticky-intro\">\r\n        <div class=\"team-group--label\">\r\n            <p>Who are we?<\/p>\r\n        <\/div>\r\n        <h3>Meet our team members<\/h3>\r\n    <\/div>\r\n    <div class=\"eye-block team-members\">\r\n                                    <div class=\"team-member-item d-flex flex-column\">\r\n                    <div class=\"team-member-item__image\">\r\n                        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/04\/14.jpg\" alt=\"\">\r\n                    <\/div>\r\n                    <div class=\"team-member-item__content\">\r\n                        <div class=\"team-member-item__content-top\">\r\n                            <div>\r\n                                <h4>Roel Thewessen<\/h4>\r\n                                <p>Integrated Safety Expert | Business Administrator | Senior Safety Expert in training<\/p>\r\n                            <\/div>\r\n                            <div class=\"team-member-item__content-top__toggle\" role=\"button\" tabindex=\"0\">\r\n                                <i class=\"fas fa-chevron-down\"><\/i>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"team-member-item__content-collapsed\">\r\n                            <p>\"I love it when things are right. As an integrated safety expert, I take a broad view of processes, risks, and people. From drafting clear safety plans to improving work procedures \u2013 I ensure structure and oversight. No vague language, just clear agreements and solutions that work. And yes, preferably with a good cup of black coffee.\"<\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <div class=\"team-member-item__links d-flex flex-column\">\r\n                                                    <a href=\"mailto:Roel.thewessen@youandshe.nl\">Roel.thewessen@youandshe.nl<\/a>\r\n                                                                            <a href=\"tel:06 11 32 58 56\">06 11 32 58 56<\/a>\r\n                                            <\/div>\r\n                <\/div>\r\n                            <div class=\"team-member-item d-flex flex-column\">\r\n                    <div class=\"team-member-item__image\">\r\n                        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/04\/15.jpg\" alt=\"\">\r\n                    <\/div>\r\n                    <div class=\"team-member-item__content\">\r\n                        <div class=\"team-member-item__content-top\">\r\n                            <div>\r\n                                <h4>Ilona Thewessen-Verblakt<\/h4>\r\n                                <p>Occupational Hygienist | Senior Safety Officer | Biological Safety Officer<\/p>\r\n                            <\/div>\r\n                            <div class=\"team-member-item__content-top__toggle\" role=\"button\" tabindex=\"0\">\r\n                                <i class=\"fas fa-chevron-down\"><\/i>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"team-member-item__content-collapsed\">\r\n                            <p>\u2018I love clarity and customisation. Whether it's exposure to hazardous substances or practical training courses, I make sure everything is correct and effective. What drives me? Helping people to do their work safely, healthily and enjoyably. And making difficult subject matter understandable in simple language.\u2019<\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <div class=\"team-member-item__links d-flex flex-column\">\r\n                                                    <a href=\"mailto:Ilona.thewessen@youandshe.nl\">Ilona.thewessen@youandshe.nl<\/a>\r\n                                                                            <a href=\"tel:06 14 91 71 01\">06 14 91 71 01<\/a>\r\n                                            <\/div>\r\n                <\/div>\r\n                            <div class=\"team-member-item d-flex flex-column\">\r\n                    <div class=\"team-member-item__image\">\r\n                        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/04\/17.jpg\" alt=\"\">\r\n                    <\/div>\r\n                    <div class=\"team-member-item__content\">\r\n                        <div class=\"team-member-item__content-top\">\r\n                            <div>\r\n                                <h4>Brian Willems<\/h4>\r\n                                <p>Biological Safety Officer | Occupational Hygiene Advisor | ADR Safety Advisor<\/p>\r\n                            <\/div>\r\n                            <div class=\"team-member-item__content-top__toggle\" role=\"button\" tabindex=\"0\">\r\n                                <i class=\"fas fa-chevron-down\"><\/i>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"team-member-item__content-collapsed\">\r\n                            <p>\u2018Lab safety and GMO regulations? That makes me happy. I translate complex material into clear, practical solutions. What characterises me? Calm, precise and always curious. I know every bit of lab jargon by heart, but every plant on my desk has a hard time. Plants rarely survive with me \u2013 but fortunately, safety flourishes.\u2019<\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <div class=\"team-member-item__links d-flex flex-column\">\r\n                                                    <a href=\"mailto:Brian.willems@youandshe.nl\">Brian.willems@youandshe.nl<\/a>\r\n                                                                            <a href=\"tel:06 23 94 79 01\">06 23 94 79 01<\/a>\r\n                                            <\/div>\r\n                <\/div>\r\n                            <div class=\"team-member-item d-flex flex-column\">\r\n                    <div class=\"team-member-item__image\">\r\n                        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/04\/16.jpg\" alt=\"\">\r\n                    <\/div>\r\n                    <div class=\"team-member-item__content\">\r\n                        <div class=\"team-member-item__content-top\">\r\n                            <div>\r\n                                <h4>Wendy Burgman<\/h4>\r\n                                <p>Emergency response instructor | First aid instructor | Administrative jack-of-all-trades<\/p>\r\n                            <\/div>\r\n                            <div class=\"team-member-item__content-top__toggle\" role=\"button\" tabindex=\"0\">\r\n                                <i class=\"fas fa-chevron-down\"><\/i>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"team-member-item__content-collapsed\">\r\n                            <p>No two days are the same in emergency response training \u2013 and that's exactly why I enjoy it so much. I appreciate taking charge, organising things, and putting people at ease. Whether it's first aid or fire and evacuation procedures, with me, you'll learn the essentials. And yes, I always carry a first aid kit and a smile with me.<\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <div class=\"team-member-item__links d-flex flex-column\">\r\n                                                    <a href=\"mailto:Wendy.burgman@youandshe.nl\">Wendy.burgman@youandshe.nl<\/a>\r\n                                                                    <\/div>\r\n                <\/div>\r\n                            <div class=\"team-member-item d-flex flex-column\">\r\n                    <div class=\"team-member-item__image\">\r\n                        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2026\/01\/image001-e1768982255535.jpg\" alt=\"\">\r\n                    <\/div>\r\n                    <div class=\"team-member-item__content\">\r\n                        <div class=\"team-member-item__content-top\">\r\n                            <div>\r\n                                <h4>Frank Mesters<\/h4>\r\n                                <p>Senior Safety Engineer<\/p>\r\n                            <\/div>\r\n                            <div class=\"team-member-item__content-top__toggle\" role=\"button\" tabindex=\"0\">\r\n                                <i class=\"fas fa-chevron-down\"><\/i>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"team-member-item__content-collapsed\">\r\n                            <p>\"With more than 30 years of experience as a safety engineer, Frank is a tremendous asset to You & SHE. He brings a wealth of knowledge and practical experience from which we, as a team, can learn a great deal. And let's be honest: the rest of the group ensures that he stays nice and young.\"<\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <div class=\"team-member-item__links d-flex flex-column\">\r\n                                                    <a href=\"mailto:Frank.mesters@youandshe.nl\">Frank.mesters@youandshe.nl<\/a>\r\n                                                                            <a href=\"tel:06 51 38 27 29\">06 51 38 27 29<\/a>\r\n                                            <\/div>\r\n                <\/div>\r\n                            <div class=\"team-member-item d-flex flex-column\">\r\n                    <div class=\"team-member-item__image\">\r\n                        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2026\/01\/image003-e1768982191301.jpg\" alt=\"\">\r\n                    <\/div>\r\n                    <div class=\"team-member-item__content\">\r\n                        <div class=\"team-member-item__content-top\">\r\n                            <div>\r\n                                <h4>Peter Munnichs<\/h4>\r\n                                <p>Environmental Expert<\/p>\r\n                            <\/div>\r\n                            <div class=\"team-member-item__content-top__toggle\" role=\"button\" tabindex=\"0\">\r\n                                <i class=\"fas fa-chevron-down\"><\/i>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"team-member-item__content-collapsed\">\r\n                            <p>\"Peter is our environmental expert and a valuable addition to the team. His expertise is slightly different from the rest: you can consult him for safety issues regarding ADR and RID transport, energy, and the environment - in short: when things get complicated, Peter knows the way.\"<\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <div class=\"team-member-item__links d-flex flex-column\">\r\n                                                    <a href=\"mailto:Peter.munnichs@youandshe.nl\">Peter.munnichs@youandshe.nl<\/a>\r\n                                                                            <a href=\"tel:06 52 30 84 46\">06 52 30 84 46<\/a>\r\n                                            <\/div>\r\n                <\/div>\r\n                            <div class=\"team-member-item d-flex flex-column\">\r\n                    <div class=\"team-member-item__image\">\r\n                        <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2026\/04\/Foto-2.jpeg\" alt=\"\">\r\n                    <\/div>\r\n                    <div class=\"team-member-item__content\">\r\n                        <div class=\"team-member-item__content-top\">\r\n                            <div>\r\n                                <h4>Maud van der Pers-Breuer<\/h4>\r\n                                <p>Occupational Hygienist in training<\/p>\r\n                            <\/div>\r\n                            <div class=\"team-member-item__content-top__toggle\" role=\"button\" tabindex=\"0\">\r\n                                <i class=\"fas fa-chevron-down\"><\/i>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"team-member-item__content-collapsed\">\r\n                            <p>Maud is an enthusiastic and inquisitive colleague who is developing rapidly within the field. At the end of 2026, she will begin her training to become a certified occupational hygienist. With her background in Biomedical Sciences, she effortlessly bridges the gap between research and practice\u2014truly applying health science within the professional field.  <\/p>\r\n                        <\/div>\r\n                    <\/div>\r\n                    <div class=\"team-member-item__links d-flex flex-column\">\r\n                                                    <a href=\"mailto:Maud.van.der.pers@youandshe.nl\">Maud.van.der.pers@youandshe.nl<\/a>\r\n                                                                    <\/div>\r\n                <\/div>\r\n                                    <\/div>\r\n<\/div>\r\n\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', function () {\r\n        document.querySelectorAll('.team-member-item__content-top__toggle').forEach(toggle => {\r\n            toggle.addEventListener('click', function () {\r\n                const item = this.closest('.team-member-item');\r\n                const content = item.querySelector('.team-member-item__content');\r\n\r\n                item.classList.toggle('active');\r\n\r\n                content.addEventListener('transitionend', () => {\r\n                    if (typeof lenis !== 'undefined') {\r\n                        lenis.resize();\r\n                    }\r\n                }, { once: true });\r\n            });\r\n        });\r\n    });\r\n<\/script>\r\n\r\n\r\n\r\n\r\n<div class=\"eye-block empty-space empty-space--large pt-md-5 pb-md-5 pt-4 pb-4\" ><\/div>\r\n<div class=\"eye-block missie-visie fade-in-animation\">\r\n    <h2 class=\"mb-3\">Our mission and vision<\/h2>\r\n    <div class=\"row\">\r\n        <div class=\"col-12 col-md-6 mb-3 mb-md-0\">\r\n            <div class=\"missie-visie__image\">\r\n                <img decoding=\"async\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/08\/18.jpg\" alt=\"Een werkbus met het You &amp; SHE logo, en de teksten &quot;Consultancy&quot;, &quot;Academy&quot;, en &quot;Social&quot;.\">\r\n            <\/div>\r\n        <\/div>\r\n        <div class=\"col-12 col-md-6\">\r\n            <div class=\"missie-visie__content\">\r\n                <div class=\"missie-visie__item mb-3\">\r\n                    <div class=\"team-group--label mb-2\">\r\n                        <p>Onze missie<\/p>\r\n                    <\/div>\r\n                    <p>At <strong>You &amp; SHE<\/strong>, we are committed every day to safe and healthy work. With smart advice and practice-oriented training, we help organizations not only recognize risks but also effectively address them. <\/p>\n<p>Whether it&#8217;s an emergency response plan, a risk assessment, or a custom training\u2014we ensure you can move forward. Tailored to your work environment, immediately applicable, and personally customized. Together, we build a future where safety works and health endures.  <\/p>\n                <\/div>\r\n                <div class=\"missie-visie__item\">\r\n                    <div class=\"team-group--label mb-2\">\r\n                        <p>Onze visie<\/p>\r\n                    <\/div>\r\n                    <p>The story behind You &amp; SHE: We believe that safety and health are not just checkmarks, but a shared responsibility. When people feel safe, they work better, healthier, and with more enjoyment. <\/p>\n<p>That&#8217;s why we strive for sustainable collaborations where we continue to think along, adjust, and innovate. By responding to new legislation, technology, and practical experience, we help organizations grow in safety and trust. <\/p>\n<p>Our dream? A strong safety culture in every company\u2014not because it has to be, but because it works. <\/p>\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n<div class=\"eye-block empty-space empty-space--large pt-md-5 pb-md-5 pt-4 pb-4\" ><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":4,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"ghostkit_customizer_options":"","ghostkit_custom_css":"","ghostkit_custom_js_head":"","ghostkit_custom_js_foot":"","ghostkit_typography":"","footnotes":""},"class_list":["post-506","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>About - You and SHE<\/title>\n<meta name=\"description\" content=\"Get to know You &amp; SHE. Learn more about who we are, what we stand for, and how we advise and train organizations.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youandshe.nl\/en\/about\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"About - You and SHE\" \/>\n<meta property=\"og:description\" content=\"Get to know You &amp; SHE. Learn more about who we are, what we stand for, and how we advise and train organizations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youandshe.nl\/en\/about\/\" \/>\n<meta property=\"og:site_name\" content=\"You and SHE\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-29T10:25:26+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/\",\"url\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/\",\"name\":\"About - You and SHE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#website\"},\"datePublished\":\"2025-04-03T08:52:29+00:00\",\"dateModified\":\"2025-09-29T10:25:26+00:00\",\"description\":\"Get to know You & SHE. Learn more about who we are, what we stand for, and how we advise and train organizations.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/\",\"name\":\"You and SHE\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#organization\",\"name\":\"You and SHE\",\"url\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/youandshe.nl\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Logo-links-paars-scaled.png\",\"contentUrl\":\"https:\\\/\\\/youandshe.nl\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/Logo-links-paars-scaled.png\",\"width\":2560,\"height\":1105,\"caption\":\"You and SHE\"},\"image\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/_you_and_she_\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"About - You and SHE","description":"Get to know You & SHE. Learn more about who we are, what we stand for, and how we advise and train organizations.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/youandshe.nl\/en\/about\/","og_locale":"en_US","og_type":"article","og_title":"About - You and SHE","og_description":"Get to know You & SHE. Learn more about who we are, what we stand for, and how we advise and train organizations.","og_url":"https:\/\/youandshe.nl\/en\/about\/","og_site_name":"You and SHE","article_modified_time":"2025-09-29T10:25:26+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/youandshe.nl\/en\/about\/","url":"https:\/\/youandshe.nl\/en\/about\/","name":"About - You and SHE","isPartOf":{"@id":"https:\/\/youandshe.nl\/en\/#website"},"datePublished":"2025-04-03T08:52:29+00:00","dateModified":"2025-09-29T10:25:26+00:00","description":"Get to know You & SHE. Learn more about who we are, what we stand for, and how we advise and train organizations.","breadcrumb":{"@id":"https:\/\/youandshe.nl\/en\/about\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youandshe.nl\/en\/about\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/youandshe.nl\/en\/about\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youandshe.nl\/en\/home\/"},{"@type":"ListItem","position":2,"name":"About"}]},{"@type":"WebSite","@id":"https:\/\/youandshe.nl\/en\/#website","url":"https:\/\/youandshe.nl\/en\/","name":"You and SHE","description":"","publisher":{"@id":"https:\/\/youandshe.nl\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/youandshe.nl\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/youandshe.nl\/en\/#organization","name":"You and SHE","url":"https:\/\/youandshe.nl\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/youandshe.nl\/en\/#\/schema\/logo\/image\/","url":"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/09\/Logo-links-paars-scaled.png","contentUrl":"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/09\/Logo-links-paars-scaled.png","width":2560,"height":1105,"caption":"You and SHE"},"image":{"@id":"https:\/\/youandshe.nl\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.instagram.com\/_you_and_she_\/"]}]}},"_links":{"self":[{"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/506","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/comments?post=506"}],"version-history":[{"count":1,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/506\/revisions"}],"predecessor-version":[{"id":517,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/506\/revisions\/517"}],"wp:attachment":[{"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/media?parent=506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}