{"id":518,"date":"2025-04-03T08:53:00","date_gmt":"2025-04-03T08:53:00","guid":{"rendered":"https:\/\/youandshe.nl\/about\/why-us\/"},"modified":"2025-09-29T10:26:16","modified_gmt":"2025-09-29T10:26:16","slug":"why-us","status":"publish","type":"page","link":"https:\/\/youandshe.nl\/en\/about\/why-us\/","title":{"rendered":"Why Us?"},"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\">About<\/p>\r\n                        <h1 class=\"hero__title\">\r\n                <strong>Why choose<\/strong><br> us?\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['about_why'], (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>\r\n<div class=\"eye-block score-klantonderzoek fade-in-animation\">\r\n    <div class=\"score-klantonderzoek__content\">\r\n        We receive an average score of 4.5 out of 5 from our customer survey    <\/div>\r\n    <div class=\"score-klantonderzoek__score\">\r\n        <div class=\"score-klantonderzoek__score-stars\">\r\n            <i class=\"fa-sharp fa-star\"><\/i><i class=\"fa-sharp fa-star\"><\/i><i class=\"fa-sharp fa-star\"><\/i><i class=\"fa-sharp fa-star\"><\/i><i class=\"fa-sharp fa-star-half-alt\"><\/i>        <\/div>\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\r\n<div class=\"eye-block testimonials-slider fade-in-animation\">\r\n    <div class=\"testimonials-slider-title\">\r\n        <div class=\"container\">\r\n            <class class=\"row\">\r\n                <div class=\"col-md-6 col-12 p-0\">\r\n                    <h4>\r\n                        This is what our clients say                    <\/h4>\r\n                <\/div>\r\n                <div class=\"col-md-6 col-12\">\r\n                    <p>\r\n                                            <\/p>\r\n                <\/div>\r\n            <\/class>\r\n        <\/div>\r\n    <\/div>\r\n    <div class=\"swiper-overflow-wrap\">\r\n        <div class=\"swiper testimonials-swiper\">\r\n            <div class=\"align-items-stretch swiper-wrapper\">\r\n                                    <div class=\"mb-5 swiper-slide\">\r\n                        <div class=\"p-4 rounded-4 d-flex flex-column justify-content-between testimonials-card\">\r\n                            <div class=\"testimonials-rating\">\r\n                                                                    <div class=\"rating-star-container\">\r\n                                                                                                                                    <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                        <\/div>\r\n                                                                <div class=\"testimonials-content\">\r\n                                    <p>\r\n                                        <p>Basic Pharma and Ilona have been working together for several years, first under the banner of IV BioCheck and now with You & SHE. Ilona has supported Basic Pharma in various ways and continues to do so, for example with questions arising from the RI&E, such as exposure analyses, hazardous substances, repetitive work, and so on. Ilona has also been very important to our Biotech department. Ilona and her colleagues are always there for us and provide comprehensive and transparent advice!<\/p>\n                                    <\/p>\r\n                                <\/div>\r\n                            <\/div>\r\n                                                            <div class=\"d-flex align-items-center testimonials-customer\">\r\n                                    <a class=\"testimonials-customer-image\" href=\"https:\/\/basicpharma.nl\/\" target=\"_blank\">\r\n                                        <img decoding=\"async\" class=\"img-fluid\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/06\/BasicPharma_Logo.png\"\r\n                                             alt=\"Basic Pharma logo\"\/>\r\n                                    <\/a>\r\n                                    <p class=\"testimonials-customer-name\">\r\n                                        Basic Pharma                                    <\/p>\r\n                                <\/div>\r\n                                                    <\/div>\r\n                    <\/div>\r\n                                    <div class=\"mb-5 swiper-slide\">\r\n                        <div class=\"p-4 rounded-4 d-flex flex-column justify-content-between testimonials-card\">\r\n                            <div class=\"testimonials-rating\">\r\n                                                                    <div class=\"rating-star-container\">\r\n                                                                                                                                    <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                        <\/div>\r\n                                                                <div class=\"testimonials-content\">\r\n                                    <p>\r\n                                        <p>In my previous company, I was one of IV Biocheck's first customers, and we were amazed at how pragmatically regulations can be applied. For Sensip-dx, Ilona and her colleagues are a cornerstone in the pragmatic application of all the rules and formalities that we encounter as a start-up.<\/p>\n                                    <\/p>\r\n                                <\/div>\r\n                            <\/div>\r\n                                                            <div class=\"d-flex align-items-center testimonials-customer\">\r\n                                    <a class=\"testimonials-customer-image\" href=\"https:\/\/www.sensipdx.com\/\" target=\"_blank\">\r\n                                        <img decoding=\"async\" class=\"img-fluid\" src=\"https:\/\/youandshe.nl\/wp-content\/uploads\/2025\/08\/sensip_logo_blauw.png\"\r\n                                             alt=\"Sensip-dx B.V. logo\"\/>\r\n                                    <\/a>\r\n                                    <p class=\"testimonials-customer-name\">\r\n                                        Sensip-dx B.V.                                    <\/p>\r\n                                <\/div>\r\n                                                    <\/div>\r\n                    <\/div>\r\n                                    <div class=\"mb-5 swiper-slide\">\r\n                        <div class=\"p-4 rounded-4 d-flex flex-column justify-content-between testimonials-card\">\r\n                            <div class=\"testimonials-rating\">\r\n                                                                    <div class=\"rating-star-container\">\r\n                                                                                                                                    <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating unchecked\"><\/i>\r\n                                                                                                                        <\/div>\r\n                                                                <div class=\"testimonials-content\">\r\n                                    <p>\r\n                                        <p>The collaboration with YOU & SHE is gradually improving our safety culture; the approach to safety is strict where necessary and pragmatic where possible.<\/p>\n                                    <\/p>\r\n                                <\/div>\r\n                            <\/div>\r\n                                                    <\/div>\r\n                    <\/div>\r\n                                    <div class=\"mb-5 swiper-slide\">\r\n                        <div class=\"p-4 rounded-4 d-flex flex-column justify-content-between testimonials-card\">\r\n                            <div class=\"testimonials-rating\">\r\n                                                                    <div class=\"rating-star-container\">\r\n                                                                                                                                    <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                        <\/div>\r\n                                                                <div class=\"testimonials-content\">\r\n                                    <p>\r\n                                        <p>Excellent occupational health advice, pragmatic results-oriented approach, positive attitude and cooperation.<\/p>\n                                    <\/p>\r\n                                <\/div>\r\n                            <\/div>\r\n                                                    <\/div>\r\n                    <\/div>\r\n                                    <div class=\"mb-5 swiper-slide\">\r\n                        <div class=\"p-4 rounded-4 d-flex flex-column justify-content-between testimonials-card\">\r\n                            <div class=\"testimonials-rating\">\r\n                                                                    <div class=\"rating-star-container\">\r\n                                                                                                                                    <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating checked\"><\/i>\r\n                                                                                                                                                                                <i class=\"fa-solid fa-star star-rating unchecked\"><\/i>\r\n                                                                                                                        <\/div>\r\n                                                                <div class=\"testimonials-content\">\r\n                                    <p>\r\n                                        <p>You & SHE is a wonderful new company run by enthusiastic professionals who focus on achieving results for their clients.<\/p>\n                                    <\/p>\r\n                                <\/div>\r\n                            <\/div>\r\n                                                    <\/div>\r\n                    <\/div>\r\n                            <\/div>\r\n            <div class=\"d-flex justify-content-end mb-5 testimonials-swiper-buttons\">\r\n                <div class=\"d-flex justify-content-center align-items-center rounded-2 testimonial-swiper-button-prev\">\r\n                    <i class=\"fa-solid fa-arrow-left\"><\/i><\/div>\r\n                <div class=\"d-flex justify-content-center align-items-center rounded-2 testimonial-swiper-button-next\">\r\n                    <i class=\"fa-solid fa-arrow-right\"><\/i><\/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>\n<div class=\"ghostkit-grid ghostkit-grid-gap-md equal-height-columns\"><div class=\"ghostkit-grid-inner\">\n<div class=\"ghostkit-col ghostkit-col-lg-12 ghostkit-col-4\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\r\n<div class=\"colored-bg__container \">\r\n    <div class=\"eye-block colored-bg  bg--pastelblue  smaller-font fade-in-animation\">\r\n        <div class=\"container\">\r\n            <div class=\"row\">\r\n                <div class=\"col-12 p-0\">\r\n                    <div class=\"colored-bg__content\">\r\n                        <div class=\"acf-innerblocks-container\">\n\n<p><strong>Smooth and clear communication:<\/strong> Partners praise our quick and clear exchange of information.<\/p>\n\n<\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\n<\/div><\/div>\n\n\n\n<div class=\"ghostkit-col ghostkit-col-lg-12 ghostkit-col-4\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\r\n<div class=\"colored-bg__container \">\r\n    <div class=\"eye-block colored-bg  bg--pastelblue  smaller-font fade-in-animation\">\r\n        <div class=\"container\">\r\n            <div class=\"row\">\r\n                <div class=\"col-12 p-0\">\r\n                    <div class=\"colored-bg__content\">\r\n                        <div class=\"acf-innerblocks-container\">\n\n<p><strong>Expertise and pleasant interaction:<\/strong> Our collaboration is experienced as highly professional and enjoyable.<\/p>\n\n<\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\n<\/div><\/div>\n\n\n\n<div class=\"ghostkit-col ghostkit-col-lg-12 ghostkit-col-4\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\r\n<div class=\"colored-bg__container \">\r\n    <div class=\"eye-block colored-bg  bg--pastelblue  smaller-font fade-in-animation\">\r\n        <div class=\"container\">\r\n            <div class=\"row\">\r\n                <div class=\"col-12 p-0\">\r\n                    <div class=\"colored-bg__content\">\r\n                        <div class=\"acf-innerblocks-container\">\n\n<p><strong>Personal and accessible approach:<\/strong> A dedicated contact person and low-threshold communication ensure an in-depth knowledge of the organization.<\/p>\n\n<\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\n<\/div><\/div>\n<\/div><\/div>\n\r\n<div class=\"eye-block empty-space empty-space--small pt-md-3 pb-md-3 pt-2 pb-2\" ><\/div>\n<div class=\"ghostkit-grid ghostkit-grid-gap-md equal-height-columns\"><div class=\"ghostkit-grid-inner\">\n<div class=\"ghostkit-col ghostkit-col-lg-12 ghostkit-col-4\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\r\n<div class=\"colored-bg__container \">\r\n    <div class=\"eye-block colored-bg  bg--pastelblue  smaller-font fade-in-animation\">\r\n        <div class=\"container\">\r\n            <div class=\"row\">\r\n                <div class=\"col-12 p-0\">\r\n                    <div class=\"colored-bg__content\">\r\n                        <div class=\"acf-innerblocks-container\">\n\n<p><strong>Proactive thinking and advising:<\/strong> We are known for our short lines of communication and active role in providing well-considered advice.<\/p>\n\n<\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\n<\/div><\/div>\n\n\n\n<div class=\"ghostkit-col ghostkit-col-lg-12 ghostkit-col-4\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\r\n<div class=\"colored-bg__container \">\r\n    <div class=\"eye-block colored-bg  bg--pastelblue  smaller-font fade-in-animation\">\r\n        <div class=\"container\">\r\n            <div class=\"row\">\r\n                <div class=\"col-12 p-0\">\r\n                    <div class=\"colored-bg__content\">\r\n                        <div class=\"acf-innerblocks-container\">\n\n<p><strong>Transparency and contagious enthusiasm:<\/strong> Our openness and drive contribute to a positive experience.<\/p>\n\n<\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\n<\/div><\/div>\n\n\n\n<div class=\"ghostkit-col ghostkit-col-lg-12 ghostkit-col-4\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\r\n<div class=\"colored-bg__container \">\r\n    <div class=\"eye-block colored-bg  bg--pastelblue  smaller-font fade-in-animation\">\r\n        <div class=\"container\">\r\n            <div class=\"row\">\r\n                <div class=\"col-12 p-0\">\r\n                    <div class=\"colored-bg__content\">\r\n                        <div class=\"acf-innerblocks-container\">\n\n<p><strong>Realistic and goal-oriented execution:<\/strong> We deliver a no-nonsense approach focused on concrete results.<\/p>\n\n<\/div>\r\n                    <\/div>\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n<\/div>\r\n\r\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>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":506,"menu_order":10,"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-518","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>Why Us? - You and SHE<\/title>\n<meta name=\"description\" content=\"Read what our clients say about You &amp; SHE. Discover how we&#039;ve helped organizations with practical, personal solutions in the areas of safety and health.\" \/>\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\/why-us\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why Us? - You and SHE\" \/>\n<meta property=\"og:description\" content=\"Read what our clients say about You &amp; SHE. Discover how we&#039;ve helped organizations with practical, personal solutions in the areas of safety and health.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youandshe.nl\/en\/about\/why-us\/\" \/>\n<meta property=\"og:site_name\" content=\"You and SHE\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-29T10:26:16+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/why-us\\\/\",\"url\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/why-us\\\/\",\"name\":\"Why Us? - You and SHE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#website\"},\"datePublished\":\"2025-04-03T08:53:00+00:00\",\"dateModified\":\"2025-09-29T10:26:16+00:00\",\"description\":\"Read what our clients say about You & SHE. Discover how we've helped organizations with practical, personal solutions in the areas of safety and health.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/why-us\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/why-us\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/why-us\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About\",\"item\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/about\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Why Us?\"}]},{\"@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":"Why Us? - You and SHE","description":"Read what our clients say about You & SHE. Discover how we've helped organizations with practical, personal solutions in the areas of safety and health.","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\/why-us\/","og_locale":"en_US","og_type":"article","og_title":"Why Us? - You and SHE","og_description":"Read what our clients say about You & SHE. Discover how we've helped organizations with practical, personal solutions in the areas of safety and health.","og_url":"https:\/\/youandshe.nl\/en\/about\/why-us\/","og_site_name":"You and SHE","article_modified_time":"2025-09-29T10:26:16+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/youandshe.nl\/en\/about\/why-us\/","url":"https:\/\/youandshe.nl\/en\/about\/why-us\/","name":"Why Us? - You and SHE","isPartOf":{"@id":"https:\/\/youandshe.nl\/en\/#website"},"datePublished":"2025-04-03T08:53:00+00:00","dateModified":"2025-09-29T10:26:16+00:00","description":"Read what our clients say about You & SHE. Discover how we've helped organizations with practical, personal solutions in the areas of safety and health.","breadcrumb":{"@id":"https:\/\/youandshe.nl\/en\/about\/why-us\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youandshe.nl\/en\/about\/why-us\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/youandshe.nl\/en\/about\/why-us\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youandshe.nl\/en\/home\/"},{"@type":"ListItem","position":2,"name":"About","item":"https:\/\/youandshe.nl\/en\/about\/"},{"@type":"ListItem","position":3,"name":"Why Us?"}]},{"@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\/518","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=518"}],"version-history":[{"count":1,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/518\/revisions"}],"predecessor-version":[{"id":519,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/518\/revisions\/519"}],"up":[{"embeddable":true,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/506"}],"wp:attachment":[{"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/media?parent=518"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}