{"id":500,"date":"2025-04-03T08:53:36","date_gmt":"2025-04-03T08:53:36","guid":{"rendered":"https:\/\/youandshe.nl\/services\/she-consultancy\/"},"modified":"2025-09-29T09:38:33","modified_gmt":"2025-09-29T09:38:33","slug":"she-consultancy","status":"publish","type":"page","link":"https:\/\/youandshe.nl\/en\/services\/she-consultancy\/","title":{"rendered":"SHE Consultancy"},"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\">Services<\/p>\r\n                        <h1 class=\"hero__title\">\r\n                SHE Consultancy\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['consultancy'], (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\"><div class=\"ghostkit-grid-inner\">\n<div class=\"ghostkit-col ghostkit-col-lg-12 ghostkit-col-8\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\n<p>SHE stands for Safety, Health &amp; Environment \u2013 three important pillars of a safe and healthy work environment. Do you need a senior or integral safety specialist who helps ensure safety in the workplace? Are you looking for an occupational hygienist who thinks along about the health of your employees in relation to exposure and risks? Or do you need support from a biological safety officer or ADR safety advisor for environmental legislation and compliance?   <\/p>\n\n\n\n<p>At You &amp; SHE, we stand for expert, pragmatic support tailored to your needs. Whether it involves temporary deployment, project-based support, or structural advice \u2013 we are happy to help you with various SHE challenges.<\/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 title-filled-bg\" style=\"background-image: url('https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/achtergrond-blauw.webp');\">\r\n    <div class=\"title-filled-bg__content\">\r\n        <h2>Safety<\/h2>\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 contentblock-cards fade-in-animation\">\r\n        <div class=\"contentblock-cards__intro\">\r\n                        <div class=\"contentblock-cards__title mb-5\">\r\n                <h3>Senior Safety Specialist (HVK)<\/h3>\r\n            <\/div>\r\n\r\n            <div class=\"contentblock-card__content mb-5\">\r\n                <p>A senior safety specialist dives deep into workplace risks, but also thinks along at policy level. From risk assessments to safety management systems \u2013 the HVK is the connecting factor between practice and strategy. With an eye for workability and compliance.  <\/p>\n<p>Examples of projects:<\/p>\n            <\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n                                                <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Conducting and updating a risk assessment<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Developing a safety culture program<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Investigation and reporting after a workplace accident, including improvement measures<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <\/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    <div class=\"eye-block contentblock-cards fade-in-animation\">\r\n        <div class=\"contentblock-cards__intro\">\r\n                        <div class=\"contentblock-cards__title mb-5\">\r\n                <h3>Integral Safety Specialist (IVK)<\/h3>\r\n            <\/div>\r\n\r\n            <div class=\"contentblock-card__content mb-5\">\r\n                <p>Safety is more than just physical protection: integrity, social safety, and crisis management are also part of it. Our IVKs have a helicopter view and bring all these aspects together in one coherent safety policy. They switch between policy, practice, and governance \u2013 and ensure support within all layers of the organization.  <\/p>\n<p>Examples of projects:<\/p>\n            <\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n                                                <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Developing an integral safety plan<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Coordinating a crisis management exercise<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Setting up a reporting structure for integrity and unwanted behavior<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <\/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    <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\/6.jpg\" alt=\"Een kale man in een opvallende gele jas en veiligheidsbril staat buiten bij industri\u00eble leidingen. Hij houdt een klembord vast en kijkt naar voren.\">\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 title-filled-bg\" style=\"background-image: url('https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/achtergrond-blauw.webp');\">\r\n    <div class=\"title-filled-bg__content\">\r\n        <h2>Health<\/h2>\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 contentblock-cards fade-in-animation\">\r\n        <div class=\"contentblock-cards__intro\">\r\n                        <div class=\"contentblock-cards__title mb-5\">\r\n                <h3>Occupational Hygienist<\/h3>\r\n            <\/div>\r\n\r\n            <div class=\"contentblock-card__content mb-5\">\r\n                <p>Health in the workplace is not always visible, but all the more important. Our occupational hygienists map exposures \u2013 to substances, noise, radiation, or physical strain \u2013 and translate that into practical, workable advice. They combine measurement precision with a human approach, and always seek the balance between safety and workability.  <\/p>\n<p>Whether it involves chemical substances in a laboratory, fine dust in a workshop, or noise in the work environment \u2013 the occupational hygienist ensures that risks become clear, and that appropriate measures follow.<\/p>\n<p>Examples of projects:<\/p>\n            <\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n                                                <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Conducting air measurements to map exposure to hazardous substances<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Advising on measures based on the Occupational Hygiene strategy<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Research into physical strain<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Support in implementing the 4-step plan for hazardous substances<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <\/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    <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\/7.jpg\" alt=\"Een technicus in een felgele jas en een roze helm staat voor een grote metalen tank. Ze is bezig met het bedienen van een apparaat dat aan de tank is gekoppeld en draagt veiligheidsoorbeschermers.\">\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 title-filled-bg\" style=\"background-image: url('https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/achtergrond-blauw.webp');\">\r\n    <div class=\"title-filled-bg__content\">\r\n        <h2>Environment<\/h2>\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 contentblock-cards fade-in-animation\">\r\n        <div class=\"contentblock-cards__intro\">\r\n                        <div class=\"contentblock-cards__title mb-5\">\r\n                <h3>Biological Safety Officer (BVF)<\/h3>\r\n            <\/div>\r\n\r\n            <div class=\"contentblock-card__content mb-5\">\r\n                <p>Working with biological agents brings specific risks, especially work with genetically modified organisms. Our biological safety officers ensure that these risks remain manageable. They are sparring partners for laboratory staff, researchers, and management \u2013 and switch effortlessly between legislation and regulations, practice, and policy.  <\/p>\n<p>Examples of projects:<\/p>\n            <\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n                                                <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Preparing risk assessments for GMO activities<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Guiding a permit process for a new laboratory (GMO Decree)<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Training and awareness about safe working with biological agents<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-3 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Review and setup of laboratories according to applicable legislation and guidelines<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <\/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    <div class=\"eye-block contentblock-cards fade-in-animation\">\r\n        <div class=\"contentblock-cards__intro\">\r\n                        <div class=\"contentblock-cards__title mb-5\">\r\n                <h3>ADR Safety Advisor<\/h3>\r\n            <\/div>\r\n\r\n            <div class=\"contentblock-card__content mb-5\">\r\n                <p>Hazardous substances require care and expertise. Our ADR safety advisor helps companies work safely and according to regulations with these substances \u2013 whether it involves storage, transport, or internal transport. They are the expert at the table when it comes to ADR compliance.  <\/p>\n<p>Examples of projects:<\/p>\n            <\/div>\r\n        <\/div>\r\n        <div class=\"row\">\r\n                                                <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Annual audit and reporting for ADR transport<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Support during an inspection by ILT or Environmental Service<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <div class=\"col-12 col-md-4 mb-4\">\r\n                        <div class=\"contentblock-card\">\r\n                                                            <div class=\"contentblock-card__icon mb-3\">\r\n                                    <i class=\"fa-solid fa-wifi\"><\/i>\r\n                                <\/div>\r\n                            \r\n                            <div class=\"contentblock-card__text\">\r\n                                <p>Preparing procedures and work instructions for packaging and shipping hazardous substances<\/p>\n                            <\/div>\r\n                        <\/div>\r\n                    <\/div>\r\n                                    <\/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    <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\/8.jpg\" alt=\"Twee technici, gekleed in blauwe overalls en met veiligheidsbrillen op, staan in een werkplaats. Een man met een notitiebord in zijn handen kijkt naar een vrouw die een deur vasthoudt.\">\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 cta\"\r\n     style=\"background-image: url('https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/achtergrond-blauw.png');\">\r\n    <div class=\"cta__content\">\r\n        <div class=\"acf-innerblocks-container\">\n\n<p><strong>No project is the same, and that makes our work so enjoyable. What you see above is just a sample from practice. Do you have a challenge or question? Please feel free to contact us \u2013 then we will look together at how we can approach it smartly and practically.   <\/strong><\/p>\n\n\n\r\n<div class=\"eye-block bsbutton text-start \" >\r\n            <a class=\"btn btn-tertiary arrow\"\r\n           href=\"https:\/\/youandshe.nl\/en\/contact\/\"\r\n           target=\"_blank\">\r\n            Contact        <\/a>\r\n    <\/div>\r\n\n<\/div>\r\n    <\/div>\r\n    <div class=\"cta__image\">\r\n        <div id=\"three-canvas\"><\/div>\r\n    <\/div>\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\r\n    const scene = new THREE.Scene();\r\n    const camera = new THREE.PerspectiveCamera(75, 1, 0.1, 1000); \/\/ square aspect ratio\r\n    camera.position.z = 5;\r\n\r\n    const renderer = new THREE.WebGLRenderer({ alpha: true, antialias: true });\r\n    renderer.setSize(500, 500); \/\/ match your container size\r\n    renderer.setClearColor(0x000000, 0); \/\/ transparent background\r\n\r\n    \/\/ Append canvas inside the cta__image div\r\n    const container = document.getElementById('three-canvas');\r\n    container.appendChild(renderer.domElement);\r\n\r\n    \/\/ Handle responsiveness\r\n    window.addEventListener('resize', () => {\r\n        const width = container.clientWidth;\r\n        const height = width; \/\/ keep square aspect\r\n        renderer.setSize(width, height);\r\n        camera.aspect = width \/ height;\r\n        camera.updateProjectionMatrix();\r\n    });\r\n\r\n    \/\/ Mouse tracking for rotation\r\n    let mouse = { x: 0, y: 0 };\r\n    document.addEventListener('mousemove', (event) => {\r\n        mouse.x = (event.clientX \/ window.innerWidth) * 2 - 1;\r\n        mouse.y = -(event.clientY \/ window.innerHeight) * 2 + 1;\r\n    });\r\n\r\n    const loader = new GLTFLoader();\r\n    loader.load(\"https:\/\/youandshe.nl\/wp-content\/themes\/youandshe\/images\/3d-models\/3D-logo-youandshe.gltf\", (gltf) => {\r\n        scene.add(gltf.scene);\r\n        gltf.scene.scale.set(80, 80, 80);\r\n\r\n        \/\/make a white material and add it to the model\r\n        const material = new THREE.MeshStandardMaterial({\r\n            color: 0xffffff,\r\n            metalness: 0.3, \/\/ shiny!\r\n            roughness: 0.2  \/\/ smooth\r\n        });\r\n\r\n        gltf.scene.traverse((child) => {\r\n            if (child.isMesh) {\r\n                child.material = material;\r\n                child.material.vertexColors = false;\r\n            }\r\n        });\r\n\r\n\r\n        const keyLight = new THREE.DirectionalLight(0xffffff, 3);\r\n        keyLight.position.set(5, 5, 5);\r\n        scene.add(keyLight);\r\n\r\n\r\n        const fillLight = new THREE.DirectionalLight(0xffffff, 1.5);\r\n        fillLight.position.set(-5, 3, 2);\r\n        scene.add(fillLight);\r\n\r\n        const backLight = new THREE.DirectionalLight(0xffffff, 1);\r\n        backLight.position.set(0, -3, -5);\r\n        scene.add(backLight);\r\n\r\n        const ambientLight = new THREE.AmbientLight(0xffffff, 1.2);\r\n        scene.add(ambientLight);\r\n\r\n\r\n        const maxRotation = 0.2;\r\n\r\n        function animate() {\r\n            requestAnimationFrame(animate);\r\n\r\n            const targetX = mouse.y * maxRotation;\r\n            const targetY = mouse.x * maxRotation;\r\n\r\n            gltf.scene.rotation.x += (targetX - gltf.scene.rotation.x) * 0.1;\r\n            gltf.scene.rotation.y += (targetY - gltf.scene.rotation.y) * 0.1;\r\n\r\n            renderer.render(scene, camera);\r\n        }\r\n        animate();\r\n    }, undefined, (error) => {\r\n        console.error('An error happened loading the GLTF:', error);\r\n    });\r\n\r\n<\/script>\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":491,"menu_order":11,"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-500","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>SHE Consultancy - You and SHE<\/title>\n<meta name=\"description\" content=\"Do you need expert advice or temporary support in the field of occupational safety, health, or environmental legislation? SHE Consultancy helps you with pragmatic solutions for all your challenges.\" \/>\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\/services\/she-consultancy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SHE Consultancy - You and SHE\" \/>\n<meta property=\"og:description\" content=\"Do you need expert advice or temporary support in the field of occupational safety, health, or environmental legislation? SHE Consultancy helps you with pragmatic solutions for all your challenges.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youandshe.nl\/en\/services\/she-consultancy\/\" \/>\n<meta property=\"og:site_name\" content=\"You and SHE\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-29T09:38:33+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\\\/services\\\/she-consultancy\\\/\",\"url\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/services\\\/she-consultancy\\\/\",\"name\":\"SHE Consultancy - You and SHE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/#website\"},\"datePublished\":\"2025-04-03T08:53:36+00:00\",\"dateModified\":\"2025-09-29T09:38:33+00:00\",\"description\":\"Do you need expert advice or temporary support in the field of occupational safety, health, or environmental legislation? SHE Consultancy helps you with pragmatic solutions for all your challenges.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/services\\\/she-consultancy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/youandshe.nl\\\/en\\\/services\\\/she-consultancy\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/services\\\/she-consultancy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Services\",\"item\":\"https:\\\/\\\/youandshe.nl\\\/en\\\/services\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SHE Consultancy\"}]},{\"@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":"SHE Consultancy - You and SHE","description":"Do you need expert advice or temporary support in the field of occupational safety, health, or environmental legislation? SHE Consultancy helps you with pragmatic solutions for all your challenges.","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\/services\/she-consultancy\/","og_locale":"en_US","og_type":"article","og_title":"SHE Consultancy - You and SHE","og_description":"Do you need expert advice or temporary support in the field of occupational safety, health, or environmental legislation? SHE Consultancy helps you with pragmatic solutions for all your challenges.","og_url":"https:\/\/youandshe.nl\/en\/services\/she-consultancy\/","og_site_name":"You and SHE","article_modified_time":"2025-09-29T09:38:33+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\/services\/she-consultancy\/","url":"https:\/\/youandshe.nl\/en\/services\/she-consultancy\/","name":"SHE Consultancy - You and SHE","isPartOf":{"@id":"https:\/\/youandshe.nl\/en\/#website"},"datePublished":"2025-04-03T08:53:36+00:00","dateModified":"2025-09-29T09:38:33+00:00","description":"Do you need expert advice or temporary support in the field of occupational safety, health, or environmental legislation? SHE Consultancy helps you with pragmatic solutions for all your challenges.","breadcrumb":{"@id":"https:\/\/youandshe.nl\/en\/services\/she-consultancy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youandshe.nl\/en\/services\/she-consultancy\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/youandshe.nl\/en\/services\/she-consultancy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youandshe.nl\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Services","item":"https:\/\/youandshe.nl\/en\/services\/"},{"@type":"ListItem","position":3,"name":"SHE Consultancy"}]},{"@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\/500","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=500"}],"version-history":[{"count":1,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/500\/revisions"}],"predecessor-version":[{"id":503,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/500\/revisions\/503"}],"up":[{"embeddable":true,"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/pages\/491"}],"wp:attachment":[{"href":"https:\/\/youandshe.nl\/en\/wp-json\/wp\/v2\/media?parent=500"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}