{"id":2,"date":"2025-04-13T23:53:14","date_gmt":"2025-04-13T21:53:14","guid":{"rendered":"https:\/\/omicron.enymserver.de\/?page_id=2"},"modified":"2026-05-05T12:08:46","modified_gmt":"2026-05-05T10:08:46","slug":"beispiel-seite","status":"publish","type":"page","link":"https:\/\/www.ha-ds.de\/dsb\/","title":{"rendered":"Hanseatic Datenschutz"},"content":{"rendered":"<div class=\"wpb-content-wrapper\">[vc_row full_width=&#8220;stretch_row&#8220; remove_bottom_col_margin=&#8220;true&#8220; css=&#8220;.vc_custom_1777975715926{background-image: url(https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/bg-cta.svg?id=20) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}&#8220; wpex_bg_position=&#8220;top left&#8220; el_class=&#8220;circlex mb-default-half&#8220;][vc_column]\n    <script async src=\"https:\/\/ga.jspm.io\/npm:es-module-shims@1.5.1\/dist\/es-module-shims.js\" crossorigin=\"anonymous\"><\/script>\n\n\t<script type=\"importmap\">\n\t{\n\t\t\"imports\": {\n\t\t\t\"three\": \"https:\/\/unpkg.com\/three@0.165.0\/build\/three.module.js\",\n\t\t\t\"three\/addons\/\": \"https:\/\/unpkg.com\/three@0.165.0\/examples\/jsm\/\"\n\t\t}\n\t}\n\t<\/script>\n\n\t\t<script type=\"module\">\n\t\t\/\/ https:\/\/discourse.threejs.org\/t\/particle-wave-code\/67327\n\n\t\timport * as THREE from \"three\";\n\timport { SimplexNoise } from \"three\/addons\/math\/SimplexNoise.js\";\n\t\/\/import { UnrealBloomPass } from \"three\/addons\/postprocessing\/UnrealBloomPass.js\";\n\n\n\t\/\/ general setup, boring, skip to the next comment\n\n\tconsole.clear( );\n\n\tvar scene = new THREE.Scene();\n\tscene.background = new THREE.Color( \"#ffffff\" ); \/\/4A2140\n\n\tvar camera = new THREE.PerspectiveCamera( 6, innerWidth\/innerHeight ); \/\/ZOOM high: weiter weg\n\tcamera.position.set( 5, 1, 9 ); \/\/5 1 7 \n\tcamera.lookAt( scene.position );\n\t\/\/camera.rotation.y = 0;\n\t\/\/camera.rotation.x = 0;\n\n\tvar renderer = new THREE.WebGLRenderer( {antialias: true} );\n\trenderer.setAnimationLoop( animationLoop );\n\trenderer.setSize( innerWidth, 1000 ); \/\/DICHTE was innerHeight but that zooms to close\n\n\tvar container = document.getElementById(\"particles\");\n\tcontainer.appendChild(renderer.domElement);\n\n\t\/\/var elements = getElementsByClassName(document, \"particles\");\n\t\/*\n\tvar elements = document.getElementsByClassName(\"particles\");\n\tvar n = elements.length;\n\n\tfor (var i = 0; i < n; i++) {\n\t\tvar e = elements[i];\n\t\te.appendChild(renderer.domElement);\n\t}\n\n\n\tvar elements = document.getElementsByClassName(\"particles\");\n\tfor (var i = 0; i < elements.length; i++) {\n\t\telements[i].appendChild(renderer.domElement);\n\t}\n\t*\/\n\n\/*\n\twindow.addEventListener( \"resize\", (event) => {\n\t\tcamera.aspect = innerWidth\/innerHeight;\n\t\tcamera.updateProjectionMatrix( );\n\t\trenderer.setSize( innerWidth, innerHeight );\n\t});\n\t*\/\n\n\t\/\/ some waves with simplex noise\n\n\t\/\/ Particle grid parameters\n\t\/\/const gridSize = 40;\n\t\/\/const spacing = 2;\n\tconst particles = [];\n\t\/*\nvar geometry = new THREE.SphereGeometry(0.2, 8, 8);\nvar material = new THREE.MeshBasicMaterial({ color: 0x871F6E });\n*\/\n\t\/*\nfor (let x = -gridSize; x < gridSize; x++) {\n  for (let z = -gridSize; z < gridSize; z++) {\n    var particle = new THREE.Mesh(geometry, material);\n    particle.position.set(x * spacing, 0, z * spacing);\n    scene.add(particle);\n    particles.push(particle);\n  }\n}\n*\/\n\n\t\/\/ Animation loop\n\tfunction animate(time) {\n\t\trequestAnimationFrame(animate);\n\t\tconst t = time * 0.001;\n\n\t\t\/\/ Wave animation - amplitude increased\n\t\tparticles.forEach(p => {\n\t\t\tconst distance = Math.sqrt(p.position.x ** 2 + p.position.z ** 2);\n\t\t\tp.position.y = Math.sin(distance * 0.1 - t) * 4; \/\/boosted 10%\n\t\t});\n\n\t\t\/\/ Camera sway effect\n\t\tcamera.position.x = Math.sin(t * 0.3) * 3;\n\t\tcamera.lookAt(0, 0, 0);\n\n\t\trenderer.render(scene, camera);\n\t}\n\n\n\n\t\/\/#abstand #linienabstand #dichte #pixelproline\n\tvar geometry = new THREE.PlaneGeometry( 2, 10, 150, 700 ),\n\n\tpos = geometry.getAttribute( \"position\" ),\n\tsimplex = new SimplexNoise( );\n\n\tvar waves = new THREE.Points(\n\t\tgeometry,\n\t\tnew THREE.PointsMaterial( {\n\t\t\tsize: 0.03,\n\t\t\tcolor: \"#E9E9E9\",\n\n\t\t\t\/\/vertexColors: true,\n\t\t\ttransparent: true,\n\t\t\topacity: 0.5,\n\t\t\t\/\/blending: THREE.AdditiveBlending,\n\t\t\tsizeAttenuation: true\n\n\t\t} )\n\t);\t\n\twaves.rotation.x = -Math.PI\/1.5; \/\/2\n\tscene.add( waves );\n\n\n\n\tfunction animationLoop( t ) {\n\t\tfor( var i=0; i<pos.count; i++ )\n\t\t{\n\t\t\tvar x = pos.getX( i ),\t\n\t\t\ty = pos.getY( i ),\t\n\t\t\tz = 0.3*simplex.noise3d( x\/1, y\/1, t\/12000 ); \/\/higher slower\n\n\t\t\tpos.setZ( i, z );\n\t\t}\n\t\tpos.needsUpdate = true;\n\n\t\trenderer.render( scene, camera );\n\t}\n\n\tanimate();\n\/*\n\twindow.addEventListener(\"resize\", () => {\n\t\tcamera.aspect = window.innerWidth \/ window.innerHeight;\n\t\tcamera.updateProjectionMatrix();\n\t\trenderer.setSize(window.innerWidth, window.innerHeight);\n\t});\n\t*\/\n\n\t<\/script><div class=\"vcex-shortcode wpex-clr\"><\/div><style>.vcex_6a2cbb59a4b9a{height:50px;}@media (max-width:1024px){.vcex_6a2cbb59a4b9a{height:50px;}}@media (max-width:959px){.vcex_6a2cbb59a4b9a{height:20px;}}@media (max-width:767px){.vcex_6a2cbb59a4b9a{height:20px;}}@media (max-width:479px){.vcex_6a2cbb59a4b9a{height:20px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59a4b9a\"><\/div><style>.vcex-image.vcex_6a2cbb59a51d9 .vcex-image-inner{max-width:200px;}<\/style><figure class=\"vcex-image vcex-module wpex-text-center vcex_6a2cbb59a51d9\"><div class=\"vcex-image-inner wpex-relative wpex-inline-block\"><img width=\"200\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/hanseatic-datenschutz-logo.svg\" class=\"vcex-image-img wpex-align-middle\" alt=\"\" loading=\"lazy\" decoding=\"async\" \/><\/div><\/figure><style>.vcex_6a2cbb59a6e69{height:40px;}@media (max-width:1024px){.vcex_6a2cbb59a6e69{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59a6e69{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59a6e69{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59a6e69{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59a6e69\"><\/div><style>.vcex-heading.vcex_6a2cbb59a7751{width:900px;font-size:2.5rem;}<\/style><h1 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h1 wpex-block wpex-text-center aligncenter\" style=\"font-size:2.5rem;width:900px;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Schluss mit dem DSGVO-Haftungsrisiko und Bu\u00dfgeldern von bis zu <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">20 Mio \u20ac f\u00fcr KMUs<\/span><\/span><\/span><\/h1><div class=\"wpex-clear\"><\/div>[vc_column_text css=&#8220;&#8220; width=&#8220;900px&#8220; font_size=&#8220;1.5em&#8220; text_align=&#8220;center&#8220; letter_spacing=&#8220;wide&#8220;]Als professioneller externer Datenschutzbeauftragter \u00fcbernehmen wir Ihren Datenschutz komplett, damit Sie sich auf Ihr Kerngesch\u00e4ft konzentrieren k\u00f6nnen[\/vc_column_text]<div class=\"theme-button-wrap textcenter wpex-clr\"><a href=\"#cta\" class=\"vcex-button theme-button align-center inline pulse-button wpex-lightbox\" data-type=\"inline\" aria-label=\"Kontakt zu Hanseatic Datenschutz\"><span class=\"vcex-button-inner theme-button-inner wpex-flex wpex-flex-wrap wpex-items-center wpex-justify-center\"><span class=\"vcex-button-icon vcex-icon-wrap theme-button-icon-left\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z\"\/><\/svg><\/span><\/span>Jetzt kostenfreie Beratung sichern<\/span><\/a><\/div> [vc_column_text css=&#8220;.vc_custom_1777924486523{margin-top: 20px !important;}&#8220; text_align=&#8220;center&#8220; font_weight=&#8220;bold&#8220;]* Nur noch wenige freie Termine[\/vc_column_text]<style>.vcex_6a2cbb59a8af9{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59a8af9{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59a8af9{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59a8af9{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59a8af9{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59a8af9\"><\/div><style>.vcex-grid-container.vcex_6a2cbb59a8d68{gap:20px;}<\/style><div class=\"vcex-grid-container vcex-module wpex-grid wpex-gap-20 wpex-grid-cols-3 wpex-items-center wpex-justify-items-center vcex_6a2cbb59a8d68\"><style>.vcex-milestone.vcex_6a2cbb59a9475 .vcex-milestone-number{color:var(--wpex-accent);font-size:4.5em;font-weight:700;}.vcex-milestone.vcex_6a2cbb59a9475 .vcex-milestone-caption{color:#333333;font-size:1.3em;font-weight:500;}<\/style><div class=\"vcex-module vcex-milestone wpex-text-center vcex_6a2cbb59a9475\"><div class=\"vcex-milestone-inner wpex-inline-block\"><div class=\"vcex-milestone-desc\"><div class=\"vcex-milestone-number wpex-leading-none\"><span class=\"vcex-milestone-time vcex-countup\" data-options=\"{&quot;startVal&quot;:0,&quot;endVal&quot;:&quot;10&quot;,&quot;duration&quot;:2.5,&quot;decimals&quot;:0,&quot;separator&quot;:&quot;,&quot;,&quot;decimal&quot;:&quot;.&quot;,&quot;animateOnScroll&quot;:false}\" aria-hidden=\"true\"><\/span><span class=\"screen-reader-text\">10<\/span><span class=\"vcex-milestone-after\">+<\/span><\/div><div class=\"vcex-milestone-caption wpex-mt-5\">Jahre Erfahrung<\/div><\/div><\/div><\/div><style>.vcex-milestone.vcex_6a2cbb59a99cf .vcex-milestone-number{color:var(--wpex-accent);font-size:4.5em;font-weight:700;}.vcex-milestone.vcex_6a2cbb59a99cf .vcex-milestone-caption{color:#333333;font-size:1.3em;font-weight:500;}<\/style><div class=\"vcex-module vcex-milestone wpex-text-center vcex_6a2cbb59a99cf\"><div class=\"vcex-milestone-inner wpex-inline-block\"><div class=\"vcex-milestone-desc\"><div class=\"vcex-milestone-number wpex-leading-none\"><span class=\"vcex-milestone-time vcex-countup\" data-options=\"{&quot;startVal&quot;:0,&quot;endVal&quot;:&quot;5&quot;,&quot;duration&quot;:2.5,&quot;decimals&quot;:0,&quot;separator&quot;:&quot;,&quot;,&quot;decimal&quot;:&quot;.&quot;,&quot;animateOnScroll&quot;:false}\" aria-hidden=\"true\"><\/span><span class=\"screen-reader-text\">5<\/span><span class=\"vcex-milestone-after\">+<\/span><\/div><div class=\"vcex-milestone-caption wpex-mt-5\">Jahre Kundenbeziehungen<\/div><\/div><\/div><\/div><style>.vcex-milestone.vcex_6a2cbb59a9e88 .vcex-milestone-number{color:var(--wpex-accent);font-size:4.5em;font-weight:700;}.vcex-milestone.vcex_6a2cbb59a9e88 .vcex-milestone-caption{color:#333333;font-size:1.3em;font-weight:500;}<\/style><div class=\"vcex-module vcex-milestone wpex-text-center vcex_6a2cbb59a9e88\"><div class=\"vcex-milestone-inner wpex-inline-block\"><div class=\"vcex-milestone-desc\"><div class=\"vcex-milestone-number wpex-leading-none\"><span class=\"vcex-milestone-time vcex-countup\" data-options=\"{&quot;startVal&quot;:0,&quot;endVal&quot;:&quot;200&quot;,&quot;duration&quot;:2.5,&quot;decimals&quot;:0,&quot;separator&quot;:&quot;,&quot;,&quot;decimal&quot;:&quot;.&quot;,&quot;animateOnScroll&quot;:false}\" aria-hidden=\"true\"><\/span><span class=\"screen-reader-text\">200<\/span><span class=\"vcex-milestone-after\">+<\/span><\/div><div class=\"vcex-milestone-caption wpex-mt-5\">Zufriedene Kunden<\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row_content_no_spaces&#8220; remove_bottom_col_margin=&#8220;true&#8220; wpex_shape_divider_top=&#8220;triangle&#8220; css=&#8220;.vc_custom_1777975690276{background-image: url(https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/bg-clients.webp?id=44) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8220; wpex_bg_color=&#8220;#191a20&#8243; wpex_bg_position=&#8220;50%&#8220; el_class=&#8220;pt-default-x2 pb-default white&#8220; wpex_shape_divider_top_color=&#8220;#ffffff&#8220; wpex_shape_divider_top_height=&#8220;100&#8243;][vc_column]<style>.vcex-heading.vcex_6a2cbb59aa48c .vcex-heading-badge{background-color:#ffffff;}<\/style><h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter\"> <span class=\"wpex-badge\" style=\"background-color:#ffffff;\">Vertrauen<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">\u00dcber 200+ <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">zufriedene<\/span><\/span> Unternehmen<\/span><\/h2><div class=\"wpex-clear\"><\/div><style class=\"vcex-carousel-preload-css\">.vcex_6a2cbb59ac2c1{--wpex-carousel-gap:65px;}.vcex_6a2cbb59ac2c1{--wpex-carousel-columns:2;}.vcex_6a2cbb59ac2c1.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}@media only screen and (min-width: 480px) {.vcex_6a2cbb59ac2c1{--wpex-carousel-columns:2;}.vcex_6a2cbb59ac2c1.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}}@media only screen and (min-width: 768px) {.vcex_6a2cbb59ac2c1{--wpex-carousel-columns:3;}.vcex_6a2cbb59ac2c1.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+4)){display:flex!important;}}@media only screen and (min-width: 960px) {.vcex_6a2cbb59ac2c1{--wpex-carousel-columns:5;}.vcex_6a2cbb59ac2c1.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+6)){display:flex!important;}}<\/style><div class=\"vcex-image-carousel wpex-carousel wpex-carousel-images wpex-clr vcex-module owl-carousel wpex-carousel--render-onload vcex_6a2cbb59ac2c1 left-direction\" data-wpex-carousel=\"{&quot;nav&quot;:&quot;false&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;autoplayHoverPause&quot;:&quot;false&quot;,&quot;slideBy&quot;:1,&quot;margin&quot;:65,&quot;items&quot;:5,&quot;responsive&quot;:{&quot;0&quot;:{&quot;items&quot;:2},&quot;480&quot;:{&quot;items&quot;:&quot;2&quot;},&quot;768&quot;:{&quot;items&quot;:&quot;3&quot;},&quot;960&quot;:{&quot;items&quot;:5}},&quot;smartSpeed&quot;:50000,&quot;autoplayTimeout&quot;:50000,&quot;slideTransition&quot;:&quot;linear&quot;,&quot;autoplayDelay&quot;:&quot;false&quot;,&quot;mouseDrag&quot;:&quot;false&quot;,&quot;touchDrag&quot;:&quot;false&quot;,&quot;rtl&quot;:1}\"><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-raffinerie-heide-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-pruefer-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2026\/05\/referenzen-tresta-weiss-s-01.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2026\/05\/referenzen-rinti-weiss-s-01.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2026\/05\/referenzen-puelm-weiss-s-01.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2026\/05\/referenzen-peuka-weiss-s-01.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2026\/05\/referenzen-noli-weiss-s-01.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-ruescher-w.svg\" alt=\"\"><\/figure><\/div><\/div><style class=\"vcex-carousel-preload-css\">.vcex_6a2cbb59af77e{--wpex-carousel-gap:65px;}.vcex_6a2cbb59af77e{--wpex-carousel-columns:2;}.vcex_6a2cbb59af77e.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}@media only screen and (min-width: 480px) {.vcex_6a2cbb59af77e{--wpex-carousel-columns:2;}.vcex_6a2cbb59af77e.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}}@media only screen and (min-width: 768px) {.vcex_6a2cbb59af77e{--wpex-carousel-columns:3;}.vcex_6a2cbb59af77e.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+4)){display:flex!important;}}@media only screen and (min-width: 960px) {.vcex_6a2cbb59af77e{--wpex-carousel-columns:5;}.vcex_6a2cbb59af77e.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+6)){display:flex!important;}}<\/style><div class=\"vcex-image-carousel wpex-carousel wpex-carousel-images wpex-clr vcex-module owl-carousel wpex-carousel--render-onload vcex_6a2cbb59af77e\" data-wpex-carousel=\"{&quot;nav&quot;:&quot;false&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;autoplayHoverPause&quot;:&quot;false&quot;,&quot;slideBy&quot;:1,&quot;margin&quot;:65,&quot;items&quot;:5,&quot;responsive&quot;:{&quot;0&quot;:{&quot;items&quot;:2},&quot;480&quot;:{&quot;items&quot;:&quot;2&quot;},&quot;768&quot;:{&quot;items&quot;:&quot;3&quot;},&quot;960&quot;:{&quot;items&quot;:5}},&quot;smartSpeed&quot;:50000,&quot;autoplayTimeout&quot;:50000,&quot;slideTransition&quot;:&quot;linear&quot;,&quot;autoplayDelay&quot;:&quot;false&quot;,&quot;mouseDrag&quot;:&quot;false&quot;,&quot;touchDrag&quot;:&quot;false&quot;}\"><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-wonik-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-wessel-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-voss-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-staderglas-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-skinboom-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-secfire-w.svg\" alt=\"\"><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img data-no-lazy=\"1\" class=\"wpex-align-middle skip-lazy\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2026\/05\/referenzen-tresta-weiss-s-01.svg\" alt=\"\"><\/figure><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row&#8220; remove_bottom_col_margin=&#8220;true&#8220; wpex_shape_divider_top=&#8220;triangle&#8220; wpex_shape_divider_bottom=&#8220;triangle&#8220; wpex_shape_divider_bottom_invert=&#8220;true&#8220; wpex_shape_divider_bottom_infront=&#8220;true&#8220; el_class=&#8220;pb-pt-default-x2 white&#8220; wpex_bg_color=&#8220;accent&#8220; wpex_shape_divider_top_color=&#8220;#17181c&#8220; wpex_shape_divider_top_height=&#8220;100&#8243; wpex_shape_divider_bottom_height=&#8220;100&#8243;][vc_column]<style>.vcex-heading.vcex_6a2cbb59b08e1 .vcex-heading-badge{background-color:#ffffff;}<\/style><h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter\"> <span class=\"wpex-badge\" style=\"background-color:#ffffff;\">Vorsicht<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Die <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">DSGVO-Realit\u00e4t<\/span><\/span> f\u00fcr KMUs<\/span><\/h2><div class=\"wpex-clear\"><\/div>[vc_column_text css=&#8220;&#8220; width=&#8220;850px&#8220; font_size=&#8220;1.5em&#8220; text_align=&#8220;center&#8220; letter_spacing=&#8220;wide&#8220;]Ohne professionellen Datenschutz riskieren Sie nicht nur Bu\u00dfgelder von bis zu 20 Millionen Euro \u2013 Sie verlieren das Vertrauen Ihrer Kunden und gef\u00e4hrden Ihre Gesch\u00e4ftst\u00e4tigkeit.[\/vc_column_text]<style>.vcex_6a2cbb59b1004{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59b1004{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59b1004{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59b1004{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59b1004{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59b1004\"><\/div><style>.vcex-grid-container.vcex_6a2cbb59b11b7{gap:40px;}<\/style><div class=\"vcex-grid-container vcex-module wpex-grid wpex-gap-20 wpex-grid-cols-1 wpex-lg-grid-cols-2 pain-points vcex_6a2cbb59b11b7\"><style>.vcex-icon-box.vcex_6a2cbb59b229e{background:var(--wpex-palette-7081-color);}.vcex-icon-box.vcex_6a2cbb59b229e .vcex-icon-box-content{color:currentColor;}.vcex-icon-box.vcex_6a2cbb59b229e .vcex-icon-box-heading{color:var(--wpex-on-accent-alt);}.vcex-icon-box.vcex_6a2cbb59b229e .vcex-icon-box-icon{color:currentColor;background:var(--wpex-accent);height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b229e .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left vcex_6a2cbb59b229e\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/w2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Existenzbedrohende Bu\u00dfgelder<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Datenschutzverst\u00f6\u00dfe k\u00f6nnen schnell f\u00fcnf- bis sechsstellige Bu\u00dfgelder nach sich ziehen. F\u00fcr viele KMUs bedeutet das das Aus.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59b37fa{background:var(--wpex-palette-7081-color);}.vcex-icon-box.vcex_6a2cbb59b37fa .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b37fa .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left vcex_6a2cbb59b37fa\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/w2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">\u00dcberforderung im Tagesgesch\u00e4ft<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Als Gesch\u00e4ftsf\u00fchrer haben Sie keine Zeit, sich in die komplexe DSGVO einzuarbeiten. Trotzdem haften Sie pers\u00f6nlich.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59b4331{background:var(--wpex-palette-7081-color);}.vcex-icon-box.vcex_6a2cbb59b4331 .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b4331 .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left vcex_6a2cbb59b4331\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/w2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Vertrauensverlust bei Kunden<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Datenpannen und unseri\u00f6ser Umgang mit Kundendaten vernichten jahrelang aufgebautes Vertrauen in Sekunden.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59b4dd3{background:var(--wpex-palette-7081-color);}.vcex-icon-box.vcex_6a2cbb59b4dd3 .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b4dd3 .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left vcex_6a2cbb59b4dd3\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/w2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Rechtsunsicherheit<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Ohne Experten tappen Sie im Dunkeln: Was ist erlaubt? Was nicht? Unwissen sch\u00fctzt vor Strafe nicht.<\/p>\n<\/div><\/div><\/div><\/div><style>.vcex_6a2cbb59b5387{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59b5387{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59b5387{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59b5387{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59b5387{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59b5387\"><\/div>[\/vc_column][\/vc_row][vc_row wpex_shape_divider_top=&#8220;triangle&#8220; wpex_shape_divider_top_invert=&#8220;true&#8220; el_class=&#8220;pt-default&#8220; wpex_shape_divider_top_height=&#8220;100&#8243;][vc_column]<h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter accent-badge\"> <span class=\"wpex-badge\">Hanseatic Datenschutz<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Ihr <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">Datenschutz<\/span><\/span> in Expertenhand<\/span><\/h2><div class=\"wpex-clear\"><\/div>[vc_column_text css=&#8220;&#8220; width=&#8220;900px&#8220; font_size=&#8220;1.5em&#8220; text_align=&#8220;center&#8220; letter_spacing=&#8220;wide&#8220;]Wir \u00fcbernehmen die komplette Datenschutz-Verantwortung, damit Sie sich auf Ihr Gesch\u00e4ft konzentrieren k\u00f6nnen.[\/vc_column_text]<style>.vcex_6a2cbb59b5cea{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59b5cea{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59b5cea{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59b5cea{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59b5cea{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59b5cea\"><\/div><style>.vcex-grid-container.vcex_6a2cbb59b5e4f{gap:40px;}<\/style><div class=\"vcex-grid-container vcex-module wpex-grid wpex-gap-20 wpex-grid-cols-1 wpex-lg-grid-cols-2 benefits vcex_6a2cbb59b5e4f\"><style>.vcex-icon-box.vcex_6a2cbb59b6574 .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b6574 .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left reason-box vcex_6a2cbb59b6574\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/check-2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">100% Rechtssicherheit<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Vollst\u00e4ndige DSGVO-Compliance durch zertifizierte Datenschutzexperten mit jahrelanger Praxiserfahrung.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59b7546 .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b7546 .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left reason-box vcex_6a2cbb59b7546\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/check-2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Sofort einsatzbereit<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Binnen 48h ist Ihr externer DSB bestellt und Sie sind rechtlich abgesichert \u2013 ohne lange Einarbeitungszeit.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59b7ef1 .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b7ef1 .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left reason-box vcex_6a2cbb59b7ef1\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/check-2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Kostenersparnis garantiert<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Deutlich g\u00fcnstiger als ein interner DSB \u2013 ohne Personalkosten, Weiterbildungen oder Vertretungsregelungen.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59b882a .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59b882a .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left reason-box vcex_6a2cbb59b882a\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/check-2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Pers\u00f6nlicher Ansprechpartner<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Direkter Draht zu Ihrem Datenschutzexperten \u2013 kein<br \/>\nCallcenter, sondern echte Beratung auf Augenh\u00f6he.<\/p>\n<\/div><\/div><\/div><\/div><style>.vcex_6a2cbb59b8d41{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59b8d41{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59b8d41{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59b8d41{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59b8d41{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59b8d41\"><\/div><div class=\"theme-button-wrap textcenter wpex-clr\"><a href=\"#cta\" class=\"vcex-button theme-button align-center inline pulse-button wpex-lightbox\" data-type=\"inline\" aria-label=\"Kontakt zu Hanseatic Datenschutz\"><span class=\"vcex-button-inner theme-button-inner wpex-flex wpex-flex-wrap wpex-items-center wpex-justify-center\"><span class=\"vcex-button-icon vcex-icon-wrap theme-button-icon-left\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z\"\/><\/svg><\/span><\/span>Jetzt kostenfreie Beratung sichern<\/span><\/a><\/div> [vc_column_text css=&#8220;.vc_custom_1777924466981{margin-top: 20px !important;}&#8220; text_align=&#8220;center&#8220; font_weight=&#8220;bold&#8220;]* Nur noch wenige freie Termine[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row&#8220; remove_bottom_col_margin=&#8220;true&#8220; el_class=&#8220;pb-pt-default-half&#8220; wpex_bg_color=&#8220;palette-7082&#8243;][vc_column]<h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter accent-badge\"> <span class=\"wpex-badge\">Testimonials<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Warum KMUs von unserem Datenschutz Service so begeistert sind<\/span><\/h2><div class=\"wpex-clear\"><\/div><style>.vcex_6a2cbb59b9d4d{height:50px;}@media (max-width:1024px){.vcex_6a2cbb59b9d4d{height:50px;}}@media (max-width:959px){.vcex_6a2cbb59b9d4d{height:20px;}}@media (max-width:767px){.vcex_6a2cbb59b9d4d{height:20px;}}@media (max-width:479px){.vcex_6a2cbb59b9d4d{height:20px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59b9d4d\"><\/div><div class=\"wpex-post-cards wpex-post-cards-template_6978 wpb-animate-in-sequence vcex_6a2cbb59bc936 wpex-relative\"><div class=\"wpex-post-cards-inner\"><style class=\"vcex-carousel-preload-css\">.vcex_6a2cbb59bc936 .wpex-posts-card-carousel{--wpex-carousel-gap:50px;}.vcex_6a2cbb59bc936 .wpex-posts-card-carousel{--wpex-carousel-columns:1;}.vcex_6a2cbb59bc936 .wpex-posts-card-carousel.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+2)){display:flex!important;}@media only screen and (min-width: 480px) {.vcex_6a2cbb59bc936 .wpex-posts-card-carousel{--wpex-carousel-columns:2;}.vcex_6a2cbb59bc936 .wpex-posts-card-carousel.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}}@media only screen and (min-width: 768px) {.vcex_6a2cbb59bc936 .wpex-posts-card-carousel{--wpex-carousel-columns:2;}.vcex_6a2cbb59bc936 .wpex-posts-card-carousel.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}}@media only screen and (min-width: 960px) {.vcex_6a2cbb59bc936 .wpex-posts-card-carousel{--wpex-carousel-columns:3;}.vcex_6a2cbb59bc936 .wpex-posts-card-carousel.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+4)){display:flex!important;}}<\/style><div class=\"wpex-post-cards-loop wpex-posts-card-carousel wpex-carousel owl-carousel wpex-carousel--render-onload wpex-carousel--flex wpex-carousel--offset-fix arrwstyle-min arrwpos-abs\" data-wpex-carousel='{&quot;slideBy&quot;:1,&quot;margin&quot;:50,&quot;items&quot;:3,&quot;responsive&quot;:{&quot;0&quot;:{&quot;items&quot;:&quot;1&quot;},&quot;480&quot;:{&quot;items&quot;:&quot;2&quot;},&quot;768&quot;:{&quot;items&quot;:2},&quot;960&quot;:{&quot;items&quot;:3}}}'><div class=\"wpex-post-cards-entry wpex-carousel-slide post-6974 type-testimonials\"><div class=\"wpex-card wpex-card-template_6978\"><div class=\"wpex-card-inner\"><div class=\"vc_row wpb_row vc_row-fluid testimonial-box wpex-relative no-bottom-margins\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><style>.vcex-icon.vcex_6a2cbb59be5de .vcex-icon-wrap{color:var(--wpex-accent);background-color:transparent;}<\/style><div class=\"vcex-icon vcex-module vcex-icon-medium wpex-text-right vcex_6a2cbb59be5de\"><div class=\"vcex-icon-wrap wpex-inline-flex wpex-items-center wpex-justify-center wpex-leading-none wpex-p-20\"><span class=\"wpex-icon wpex-icon--bidi\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z\"\/><\/svg><\/span><\/div><\/div>\n<div class=\"vcex-post-content\">\n\t\n\t\t\t\t\t<div class=\"vcex-post-content-c wpex-clr wpex-last-mb-0\">\r\n<p class=\"wp-block-paragraph\">Sehr kompetenter, schneller und l\u00f6sungsorientierter Service zum Datenschutz. Hier befindet man sich in sehr guten H\u00e4nden.<\/p>\r\n<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n<div class=\"vcex-spacing wpex-w-100 wpex-clear default-quarter\"><\/div><style>.vcex-icon-box.vcex_6a2cbb59bf964 .vcex-icon-box-image{width:80px;height:80px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-one wpex-flex wpex-items-center wpex-text-left vcex_6a2cbb59bf964\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-flex-shrink-0 wpex-mr-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/google-logo.svg\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"80\" height=\"80\"><\/div><div class=\"vcex-icon-box-text wpex-flex-grow\"><h2 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Unternehmen aus der Sportwagenvermietung<\/h2><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><style>.vcex-star-rating.vcex_6a2cbb59c0905 .vcex-star-rating__star{color:var(--wpex-accent);}<\/style><div class=\"vcex-module vcex-star-rating vcex-star-rating--plain wpex-leading-none vcex_6a2cbb59c0905\"><div class=\"vcex-star-rating__inner wpex-inline-flex wpex-flex-wrap wpex-items-center\"><div class=\"vcex-star-rating__stars wpex-flex wpex-flex-wrap wpex-items-center wpex-gap-5\"><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><\/div><\/div><\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"wpex-post-cards-entry wpex-carousel-slide post-6970 type-testimonials\"><div class=\"wpex-card wpex-card-template_6978\"><div class=\"wpex-card-inner\"><div class=\"vc_row wpb_row vc_row-fluid testimonial-box wpex-relative no-bottom-margins\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><style>.vcex-icon.vcex_6a2cbb59c191e .vcex-icon-wrap{color:var(--wpex-accent);background-color:transparent;}<\/style><div class=\"vcex-icon vcex-module vcex-icon-medium wpex-text-right vcex_6a2cbb59c191e\"><div class=\"vcex-icon-wrap wpex-inline-flex wpex-items-center wpex-justify-center wpex-leading-none wpex-p-20\"><span class=\"wpex-icon wpex-icon--bidi\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z\"\/><\/svg><\/span><\/div><\/div>\n<div class=\"vcex-post-content\">\n\t\n\t\t\t\t\t<div class=\"vcex-post-content-c wpex-clr wpex-last-mb-0\">\r\n<p class=\"wp-block-paragraph\">Innovatives und kompetentes Unternehmen, beste und reibungslose Abwicklung in einem f\u00fcr den Kunden komplexem und wichtigem Thema.<\/p>\r\n<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n<div class=\"vcex-spacing wpex-w-100 wpex-clear default-quarter\"><\/div><style>.vcex-icon-box.vcex_6a2cbb59c2832 .vcex-icon-box-image{width:80px;height:80px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-one wpex-flex wpex-items-center wpex-text-left vcex_6a2cbb59c2832\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-flex-shrink-0 wpex-mr-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/google-logo.svg\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"80\" height=\"80\"><\/div><div class=\"vcex-icon-box-text wpex-flex-grow\"><h2 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Unternehmen aus der Versicherungsbranche<\/h2><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><style>.vcex-star-rating.vcex_6a2cbb59c2f4e .vcex-star-rating__star{color:var(--wpex-accent);}<\/style><div class=\"vcex-module vcex-star-rating vcex-star-rating--plain wpex-leading-none vcex_6a2cbb59c2f4e\"><div class=\"vcex-star-rating__inner wpex-inline-flex wpex-flex-wrap wpex-items-center\"><div class=\"vcex-star-rating__stars wpex-flex wpex-flex-wrap wpex-items-center wpex-gap-5\"><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><\/div><\/div><\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"wpex-post-cards-entry wpex-carousel-slide post-6966 type-testimonials\"><div class=\"wpex-card wpex-card-template_6978\"><div class=\"wpex-card-inner\"><div class=\"vc_row wpb_row vc_row-fluid testimonial-box wpex-relative no-bottom-margins\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><style>.vcex-icon.vcex_6a2cbb59c39c7 .vcex-icon-wrap{color:var(--wpex-accent);background-color:transparent;}<\/style><div class=\"vcex-icon vcex-module vcex-icon-medium wpex-text-right vcex_6a2cbb59c39c7\"><div class=\"vcex-icon-wrap wpex-inline-flex wpex-items-center wpex-justify-center wpex-leading-none wpex-p-20\"><span class=\"wpex-icon wpex-icon--bidi\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z\"\/><\/svg><\/span><\/div><\/div>\n<div class=\"vcex-post-content\">\n\t\n\t\t\t\t\t<div class=\"vcex-post-content-c wpex-clr wpex-last-mb-0\">\r\n<p class=\"wp-block-paragraph\">Prima Beratung, toller Kontakt zu Hanseatic Datenschutz. Flexible und kreative Betreuung bei allen Datenschutzthemen! Vielen Dank.<\/p>\r\n<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n<div class=\"vcex-spacing wpex-w-100 wpex-clear default-quarter\"><\/div><style>.vcex-icon-box.vcex_6a2cbb59c46e7 .vcex-icon-box-image{width:80px;height:80px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-one wpex-flex wpex-items-center wpex-text-left vcex_6a2cbb59c46e7\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-flex-shrink-0 wpex-mr-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/google-logo.svg\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"80\" height=\"80\"><\/div><div class=\"vcex-icon-box-text wpex-flex-grow\"><h2 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Unternehmen aus der Kosmetikbranche<\/h2><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><style>.vcex-star-rating.vcex_6a2cbb59c4dcd .vcex-star-rating__star{color:var(--wpex-accent);}<\/style><div class=\"vcex-module vcex-star-rating vcex-star-rating--plain wpex-leading-none vcex_6a2cbb59c4dcd\"><div class=\"vcex-star-rating__inner wpex-inline-flex wpex-flex-wrap wpex-items-center\"><div class=\"vcex-star-rating__stars wpex-flex wpex-flex-wrap wpex-items-center wpex-gap-5\"><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><\/div><\/div><\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"wpex-post-cards-entry wpex-carousel-slide post-6962 type-testimonials\"><div class=\"wpex-card wpex-card-template_6978\"><div class=\"wpex-card-inner\"><div class=\"vc_row wpb_row vc_row-fluid testimonial-box wpex-relative no-bottom-margins\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><style>.vcex-icon.vcex_6a2cbb59c582e .vcex-icon-wrap{color:var(--wpex-accent);background-color:transparent;}<\/style><div class=\"vcex-icon vcex-module vcex-icon-medium wpex-text-right vcex_6a2cbb59c582e\"><div class=\"vcex-icon-wrap wpex-inline-flex wpex-items-center wpex-justify-center wpex-leading-none wpex-p-20\"><span class=\"wpex-icon wpex-icon--bidi\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z\"\/><\/svg><\/span><\/div><\/div>\n<div class=\"vcex-post-content\">\n\t\n\t\t\t\t\t<div class=\"vcex-post-content-c wpex-clr wpex-last-mb-0\"><p>Der erste Kontakt mit Herrn Helmcke war sehr freundlich. Der Angebotene Service ist schnell und zuverl\u00e4ssig und alle Termine wurden eingehalten.<\/p>\n<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n<div class=\"vcex-spacing wpex-w-100 wpex-clear default-quarter\"><\/div><style>.vcex-icon-box.vcex_6a2cbb59c654c .vcex-icon-box-image{width:80px;height:80px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-one wpex-flex wpex-items-center wpex-text-left vcex_6a2cbb59c654c\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-flex-shrink-0 wpex-mr-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/google-logo.svg\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"80\" height=\"80\"><\/div><div class=\"vcex-icon-box-text wpex-flex-grow\"><h2 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Unternehmen aus dem Einzelhandel<\/h2><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><style>.vcex-star-rating.vcex_6a2cbb59c6c49 .vcex-star-rating__star{color:var(--wpex-accent);}<\/style><div class=\"vcex-module vcex-star-rating vcex-star-rating--plain wpex-leading-none vcex_6a2cbb59c6c49\"><div class=\"vcex-star-rating__inner wpex-inline-flex wpex-flex-wrap wpex-items-center\"><div class=\"vcex-star-rating__stars wpex-flex wpex-flex-wrap wpex-items-center wpex-gap-5\"><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><\/div><\/div><\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"wpex-post-cards-entry wpex-carousel-slide post-6958 type-testimonials\"><div class=\"wpex-card wpex-card-template_6978\"><div class=\"wpex-card-inner\"><div class=\"vc_row wpb_row vc_row-fluid testimonial-box wpex-relative no-bottom-margins\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><style>.vcex-icon.vcex_6a2cbb59c778d .vcex-icon-wrap{color:var(--wpex-accent);background-color:transparent;}<\/style><div class=\"vcex-icon vcex-module vcex-icon-medium wpex-text-right vcex_6a2cbb59c778d\"><div class=\"vcex-icon-wrap wpex-inline-flex wpex-items-center wpex-justify-center wpex-leading-none wpex-p-20\"><span class=\"wpex-icon wpex-icon--bidi\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z\"\/><\/svg><\/span><\/div><\/div>\n<div class=\"vcex-post-content\">\n\t\n\t\t\t\t\t<div class=\"vcex-post-content-c wpex-clr wpex-last-mb-0\">\r\n<p class=\"wp-block-paragraph\">Die Zusammenarbeit mit Herrn Helmcke ist immer wieder bereichernd! Man kann ihm eine hohe Professionalit\u00e4t und Fachwissen unterschreiben. Danke!<\/p>\r\n<\/div>\n\n\t\t\t\t\t\t\t<\/div>\n<div class=\"vcex-spacing wpex-w-100 wpex-clear default-quarter\"><\/div><style>.vcex-icon-box.vcex_6a2cbb59c8496 .vcex-icon-box-image{width:80px;height:80px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-one wpex-flex wpex-items-center wpex-text-left vcex_6a2cbb59c8496\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-flex-shrink-0 wpex-mr-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/google-logo.svg\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"80\" height=\"80\"><\/div><div class=\"vcex-icon-box-text wpex-flex-grow\"><h2 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Unternehmen aus der Finanzbranche<\/h2><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><style>.vcex-star-rating.vcex_6a2cbb59c8acf .vcex-star-rating__star{color:var(--wpex-accent);}<\/style><div class=\"vcex-module vcex-star-rating vcex-star-rating--plain wpex-leading-none vcex_6a2cbb59c8acf\"><div class=\"vcex-star-rating__inner wpex-inline-flex wpex-flex-wrap wpex-items-center\"><div class=\"vcex-star-rating__stars wpex-flex wpex-flex-wrap wpex-items-center wpex-gap-5\"><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><\/div><\/div><\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"wpex-post-cards-entry wpex-carousel-slide post-6954 type-testimonials\"><div class=\"wpex-card wpex-card-template_6978\"><div class=\"wpex-card-inner\"><div class=\"vc_row wpb_row vc_row-fluid testimonial-box wpex-relative no-bottom-margins\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><style>.vcex-icon.vcex_6a2cbb59c9474 .vcex-icon-wrap{color:var(--wpex-accent);background-color:transparent;}<\/style><div class=\"vcex-icon vcex-module vcex-icon-medium wpex-text-right vcex_6a2cbb59c9474\"><div class=\"vcex-icon-wrap wpex-inline-flex wpex-items-center wpex-justify-center wpex-leading-none wpex-p-20\"><span class=\"wpex-icon wpex-icon--bidi\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z\"\/><\/svg><\/span><\/div><\/div>\n<div class=\"vcex-post-content\">\n\t\n\t\t\t\t\t<div class=\"vcex-post-content-c wpex-clr wpex-last-mb-0\">Wir sind mit der angebotenen Betreuung sehr zufrieden. Herr Helmcke ist z\u00fcgig erreichbar, hat immer ein offenes Ohr und geht die Dinge fundiert und praxisnah an.<!-- \/wp:post-content --><\/div>\n\n\t\t\t\t\t\t\t<\/div>\n<div class=\"vcex-spacing wpex-w-100 wpex-clear default-quarter\"><\/div><style>.vcex-icon-box.vcex_6a2cbb59ca288 .vcex-icon-box-image{width:80px;height:80px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-one wpex-flex wpex-items-center wpex-text-left vcex_6a2cbb59ca288\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-flex-shrink-0 wpex-mr-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/google-logo.svg\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"80\" height=\"80\"><\/div><div class=\"vcex-icon-box-text wpex-flex-grow\"><h2 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Unternehmen aus der FInanzbranche<\/h2><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><style>.vcex-star-rating.vcex_6a2cbb59cadbe .vcex-star-rating__star{color:var(--wpex-accent);}<\/style><div class=\"vcex-module vcex-star-rating vcex-star-rating--plain wpex-leading-none vcex_6a2cbb59cadbe\"><div class=\"vcex-star-rating__inner wpex-inline-flex wpex-flex-wrap wpex-items-center\"><div class=\"vcex-star-rating__stars wpex-flex wpex-flex-wrap wpex-items-center wpex-gap-5\"><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><span class=\"vcex-star-rating__star vcex-star-rating__star--full wpex-inline-flex wpex-items-center wpex-justify-center\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 576 512\"><path d=\"M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z\"\/><\/svg><\/span><\/span><\/div><\/div><\/div>\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row remove_bottom_col_margin=&#8220;true&#8220; el_class=&#8220;pb-pt-default&#8220;][vc_column]<h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter accent-badge\"> <span class=\"wpex-badge\">Wir vs. Andere Anbieter<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">Warum<\/span><\/span> Hanseatic Datenschutz?<\/span><\/h2><div class=\"wpex-clear\"><\/div>[vc_column_text css=&#8220;&#8220; width=&#8220;900px&#8220; font_size=&#8220;1.5em&#8220; text_align=&#8220;center&#8220; letter_spacing=&#8220;wide&#8220;]W\u00e4hrend andere nur Standardl\u00f6sungen anbieten, entwickeln wir ma\u00dfgeschneiderte Datenschutzkonzepte f\u00fcr Ihr Unternehmen.[\/vc_column_text]<style>.vcex_6a2cbb59cbbf6{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59cbbf6{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59cbbf6{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59cbbf6{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59cbbf6{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59cbbf6\"><\/div>[vc_row_inner remove_bottom_col_margin=&#8220;true&#8220; el_class=&#8220;mb-default-half&#8220; visibility=&#8220;hidden-phone&#8220;][vc_column_inner width=&#8220;1\/3&#8243;][\/vc_column_inner][vc_column_inner width=&#8220;1\/3&#8243;]<div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block wpex-text-center aligncenter\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">Hanseatic Datenschutz<\/span><\/span><\/span><\/div><div class=\"wpex-clear\"><\/div>[\/vc_column_inner][vc_column_inner width=&#8220;1\/3&#8243;]<div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block wpex-text-center aligncenter\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Andere Anbieter<\/span><\/div><div class=\"wpex-clear\"><\/div>[\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8220;comparison-row&#8220;][vc_column_inner el_class=&#8220;compare-column-1&#8243; width=&#8220;1\/3&#8243;]<h3 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h3 wpex-block aligncenter\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Branchen-Know-how<\/span><\/h3><div class=\"wpex-clear\"><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-2 first&#8220; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59cd537{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Hanseatic Datenschutz<\/span><\/div><div class=\"wpex-clear\"><\/div><style>.vcex-list_item.vcex_6a2cbb59cdfcc .vcex-list-item-icon-inner{color:currentColor;}<\/style><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value vcex_6a2cbb59cdfcc\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Fester Ansprechpartner<\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-3 first&#8220; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59ce5ce{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Andere Anbieter<\/span><\/div><div class=\"wpex-clear\"><\/div><style>.vcex-list_item.vcex_6a2cbb59cebdc .vcex-list-item-icon-inner{color:var(--wpex-accent);}<\/style><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value vcex_6a2cbb59cebdc\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 384 512\"><path d=\"M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Callcenter-Mentalit\u00e4t<\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8220;comparison-row&#8220;][vc_column_inner el_class=&#8220;compare-column-1&#8243; width=&#8220;1\/3&#8243;]<h3 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h3 wpex-block aligncenter\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Pers\u00f6nliche Betreuung<\/span><\/h3><div class=\"wpex-clear\"><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-2&#8243; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59cf666{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Hanseatic Datenschutz<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Spezialisiert auf KMU<\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-3&#8243; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59d0065{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Andere Anbieter<\/span><\/div><div class=\"wpex-clear\"><\/div><style>.vcex-list_item.vcex_6a2cbb59d0629 .vcex-list-item-icon-inner{color:var(--wpex-accent);}<\/style><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value vcex_6a2cbb59d0629\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 384 512\"><path d=\"M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Allgemeine L\u00f6sungen<\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8220;comparison-row&#8220;][vc_column_inner el_class=&#8220;compare-column-1&#8243; width=&#8220;1\/3&#8243;]<h3 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h3 wpex-block aligncenter\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Reaktionszeit<\/span><\/h3><div class=\"wpex-clear\"><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-2&#8243; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59d1081{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Hanseatic Datenschutz<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Binnen 24h<\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-3&#8243; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59d1afa{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Andere Anbieter<\/span><\/div><div class=\"wpex-clear\"><\/div><style>.vcex-list_item.vcex_6a2cbb59d20c3 .vcex-list-item-icon-inner{color:var(--wpex-accent);}<\/style><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value vcex_6a2cbb59d20c3\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 384 512\"><path d=\"M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Mehrere Tage<\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8220;comparison-row&#8220;][vc_column_inner el_class=&#8220;compare-column-1&#8243; width=&#8220;1\/3&#8243;]<h3 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h3 wpex-block aligncenter\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Dokumentation<\/span><\/h3><div class=\"wpex-clear\"><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-2&#8243; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59d2b31{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Hanseatic Datenschutz<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Individuell erstellt<\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-3&#8243; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59d3577{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Andere Anbieter<\/span><\/div><div class=\"wpex-clear\"><\/div><style>.vcex-list_item.vcex_6a2cbb59d3e50 .vcex-list-item-icon-inner{color:var(--wpex-accent);}<\/style><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value vcex_6a2cbb59d3e50\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 384 512\"><path d=\"M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Standard-Templates<\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner][vc_row_inner el_class=&#8220;comparison-row&#8220;][vc_column_inner el_class=&#8220;compare-column-1&#8243; width=&#8220;1\/3&#8243;]<h3 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h3 wpex-block aligncenter\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Schulungen<\/span><\/h3><div class=\"wpex-clear\"><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-2 last&#8220; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59d4b2d{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Hanseatic Datenschutz<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Vor Ort &amp; digital<\/div><\/div><\/div>[\/vc_column_inner][vc_column_inner el_class=&#8220;compare-column-3 last&#8220; width=&#8220;1\/3&#8243; offset=&#8220;vc_col-xs-6&#8243;]<style>.vcex-heading.vcex_6a2cbb59d55b3{font-size:1em;font-weight:600;}<\/style><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter visible-phone table-headline\" style=\"font-size:1em;font-weight:600;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Andere Anbieter<\/span><\/div><div class=\"wpex-clear\"><\/div><style>.vcex-list_item.vcex_6a2cbb59d5ca5 .vcex-list-item-icon-inner{color:var(--wpex-accent);}<\/style><div class=\"vcex-list_item vcex-module wpex-m-0 wpex-max-w-100 wpex-mb-5 compare-value vcex_6a2cbb59d5ca5\"><div class=\"vcex-list-item-inner wpex-inline-flex wpex-flex-no-wrap\"><div class=\"vcex-list-item-icon wpex-mr-10\"><div class=\"vcex-list-item-icon-inner vcex-icon-wrap wpex-inline-flex wpex-justify-center wpex-items-center wpex-leading-none wpex-child-inherit-color\"><span class=\"wpex-icon--w wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 384 512\"><path d=\"M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z\"\/><\/svg><\/span><\/div><\/div><div class=\"vcex-list-item-text vcex-content wpex-flex-grow\">Nur Online-Module<\/div><\/div><\/div>[\/vc_column_inner][\/vc_row_inner]<div class=\"vc_custom_1777922022052 wpex-clr\"><div class=\"theme-button-wrap textcenter wpex-clr\"><a href=\"#cta\" class=\"vcex-button theme-button align-center inline pulse-button wpex-lightbox\" data-type=\"inline\" aria-label=\"Kontakt zu Hanseatic Datenschutz\"><span class=\"vcex-button-inner theme-button-inner wpex-flex wpex-flex-wrap wpex-items-center wpex-justify-center\"><span class=\"vcex-button-icon vcex-icon-wrap theme-button-icon-left\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z\"\/><\/svg><\/span><\/span>Jetzt kostenfreie Beratung sichern<\/span><\/a><\/div><\/div> [vc_column_text css=&#8220;.vc_custom_1777924383638{margin-top: 20px !important;}&#8220; text_align=&#8220;center&#8220; font_weight=&#8220;bold&#8220;]* Nur noch wenige freie Termine[\/vc_column_text][\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row&#8220; remove_bottom_col_margin=&#8220;true&#8220; el_class=&#8220;pb-pt-default-half&#8220; wpex_bg_color=&#8220;palette-7082&#8243;][vc_column]<h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter accent-badge\"> <span class=\"wpex-badge\">Hanseatic Datenschutz<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Warum \u00fcber <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">200 Unternehmen<\/span><\/span> auf uns vertrauen<\/span><\/h2><div class=\"wpex-clear\"><\/div>[vc_column_text css=&#8220;&#8220; width=&#8220;900px&#8220; font_size=&#8220;1.5em&#8220; text_align=&#8220;center&#8220; letter_spacing=&#8220;wide&#8220;]Unsere Expertise, Erfahrung und der pers\u00f6nliche Service \u00fcberzeugen Gesch\u00e4ftsf\u00fchrer aus dem gesamten deutschsprachigen Raum.[\/vc_column_text]<style>.vcex_6a2cbb59d738c{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59d738c{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59d738c{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59d738c{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59d738c{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59d738c\"><\/div><style>.vcex-grid-container.vcex_6a2cbb59d7532{gap:40px;}<\/style><div class=\"vcex-grid-container vcex-module wpex-grid wpex-gap-20 wpex-grid-cols-1 wpex-lg-grid-cols-3 benefits vcex_6a2cbb59d7532\"><style>.vcex-icon-box.vcex_6a2cbb59d7e28 .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59d7e28 .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left reason-box vcex_6a2cbb59d7e28\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/check-2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Zertifizierte Expertise<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>T\u00dcV-zertifizierte Datenschutzbeauftragte mit \u00fcber 10 Jahren Praxiserfahrung im Mittelstand.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59d8d8e .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59d8d8e .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left reason-box vcex_6a2cbb59d8d8e\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/check-2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Bew\u00e4hrte Methodik<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>\u00dcber 200 erfolgreich betreute Unternehmen \u2013 von Startups bis zum etablierten Mittelst\u00e4ndler.<\/p>\n<\/div><\/div><\/div><style>.vcex-icon-box.vcex_6a2cbb59d9c73 .vcex-icon-box-icon{height:50px;width:50px;}.vcex-icon-box.vcex_6a2cbb59d9c73 .vcex-icon-box-image{width:60px;}<\/style><div class=\"vcex-module vcex-icon-box vcex-icon-box-two wpex-block wpex-shadow-xl wpex-py-40 wpex-px-40 wpex-text-left reason-box vcex_6a2cbb59d9c73\"><div class=\"vcex-icon-box-symbol vcex-icon-box-symbol--image wpex-mb-20\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/check-2.gif\" alt=\"\" class=\"vcex-icon-box-image wpex-align-middle\" loading=\"lazy\" decoding=\"async\" width=\"480\" height=\"480\"><\/div><div class=\"vcex-icon-box-text\"><h3 class=\"vcex-icon-box-heading wpex-heading wpex-text-md wpex-mb-10\">Langfristige Partnerschaft<\/h3><div class=\"vcex-icon-box-content wpex-last-mb-0 wpex-clr\"><p>Durchschnittliche Kundenbeziehung \u00fcber 5 Jahre \u2013 Vertrauen durch kontinuierliche Leistung.<\/p>\n<\/div><\/div><\/div><\/div><style>.vcex_6a2cbb59da598{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59da598{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59da598{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59da598{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59da598{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59da598\"><\/div>[\/vc_column][\/vc_row][vc_row remove_bottom_col_margin=&#8220;true&#8220; el_class=&#8220;pb-pt-default&#8220;][vc_column]<style class=\"vcex-carousel-preload-css\">.vcex_6a2cbb59db94c{--wpex-carousel-gap:40px;}.vcex_6a2cbb59db94c{--wpex-carousel-columns:2;}.vcex_6a2cbb59db94c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}@media only screen and (min-width: 480px) {.vcex_6a2cbb59db94c{--wpex-carousel-columns:2;}.vcex_6a2cbb59db94c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}}@media only screen and (min-width: 768px) {.vcex_6a2cbb59db94c{--wpex-carousel-columns:3;}.vcex_6a2cbb59db94c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+4)){display:flex!important;}}@media only screen and (min-width: 960px) {.vcex_6a2cbb59db94c{--wpex-carousel-columns:5;}.vcex_6a2cbb59db94c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+6)){display:flex!important;}}<\/style><div class=\"vcex-image-carousel wpex-carousel wpex-carousel-images wpex-clr vcex-module owl-carousel wpex-carousel--render-onload vcex_6a2cbb59db94c\" data-wpex-carousel=\"{&quot;nav&quot;:&quot;false&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;autoplayHoverPause&quot;:&quot;false&quot;,&quot;slideBy&quot;:1,&quot;margin&quot;:40,&quot;items&quot;:5,&quot;responsive&quot;:{&quot;0&quot;:{&quot;items&quot;:2},&quot;480&quot;:{&quot;items&quot;:&quot;2&quot;},&quot;768&quot;:{&quot;items&quot;:&quot;3&quot;},&quot;960&quot;:{&quot;items&quot;:5}},&quot;smartSpeed&quot;:50000,&quot;autoplayTimeout&quot;:50000,&quot;slideTransition&quot;:&quot;linear&quot;,&quot;autoplayDelay&quot;:&quot;false&quot;,&quot;mouseDrag&quot;:&quot;false&quot;,&quot;touchDrag&quot;:&quot;false&quot;}\"><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-galeriamarkthalle.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-galeria.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-finnern-w.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-faktor-mensch.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-dunst.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-docboom.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-daehmlow.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><\/div><style class=\"vcex-carousel-preload-css\">.vcex_6a2cbb59dd695{--wpex-carousel-gap:40px;}.vcex_6a2cbb59dd695{--wpex-carousel-columns:2;}.vcex_6a2cbb59dd695.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}@media only screen and (min-width: 480px) {.vcex_6a2cbb59dd695{--wpex-carousel-columns:2;}.vcex_6a2cbb59dd695.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}}@media only screen and (min-width: 768px) {.vcex_6a2cbb59dd695{--wpex-carousel-columns:3;}.vcex_6a2cbb59dd695.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+4)){display:flex!important;}}@media only screen and (min-width: 960px) {.vcex_6a2cbb59dd695{--wpex-carousel-columns:5;}.vcex_6a2cbb59dd695.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+6)){display:flex!important;}}<\/style><div class=\"vcex-image-carousel wpex-carousel wpex-carousel-images wpex-clr vcex-module owl-carousel wpex-carousel--render-onload vcex_6a2cbb59dd695 left-direction\" data-wpex-carousel=\"{&quot;nav&quot;:&quot;false&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;autoplayHoverPause&quot;:&quot;false&quot;,&quot;slideBy&quot;:1,&quot;margin&quot;:40,&quot;items&quot;:5,&quot;responsive&quot;:{&quot;0&quot;:{&quot;items&quot;:2},&quot;480&quot;:{&quot;items&quot;:&quot;2&quot;},&quot;768&quot;:{&quot;items&quot;:&quot;3&quot;},&quot;960&quot;:{&quot;items&quot;:5}},&quot;smartSpeed&quot;:50000,&quot;autoplayTimeout&quot;:50000,&quot;slideTransition&quot;:&quot;linear&quot;,&quot;autoplayDelay&quot;:&quot;false&quot;,&quot;mouseDrag&quot;:&quot;false&quot;,&quot;touchDrag&quot;:&quot;false&quot;,&quot;rtl&quot;:1}\"><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-ccv.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-bredehoeft.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-brecht.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-boening.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-bic.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-bedo.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-adameve.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><\/div><style class=\"vcex-carousel-preload-css\">.vcex_6a2cbb59df47c{--wpex-carousel-gap:40px;}.vcex_6a2cbb59df47c{--wpex-carousel-columns:2;}.vcex_6a2cbb59df47c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}@media only screen and (min-width: 480px) {.vcex_6a2cbb59df47c{--wpex-carousel-columns:2;}.vcex_6a2cbb59df47c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+3)){display:flex!important;}}@media only screen and (min-width: 768px) {.vcex_6a2cbb59df47c{--wpex-carousel-columns:3;}.vcex_6a2cbb59df47c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+4)){display:flex!important;}}@media only screen and (min-width: 960px) {.vcex_6a2cbb59df47c{--wpex-carousel-columns:5;}.vcex_6a2cbb59df47c.wpex-carousel:not(.wpex-carousel--loaded) > *:not(:nth-child(1n+6)){display:flex!important;}}<\/style><div class=\"vcex-image-carousel wpex-carousel wpex-carousel-images wpex-clr vcex-module owl-carousel wpex-carousel--render-onload vcex_6a2cbb59df47c\" data-wpex-carousel=\"{&quot;nav&quot;:&quot;false&quot;,&quot;autoplay&quot;:&quot;true&quot;,&quot;autoplayHoverPause&quot;:&quot;false&quot;,&quot;slideBy&quot;:1,&quot;margin&quot;:40,&quot;items&quot;:5,&quot;responsive&quot;:{&quot;0&quot;:{&quot;items&quot;:2},&quot;480&quot;:{&quot;items&quot;:&quot;2&quot;},&quot;768&quot;:{&quot;items&quot;:&quot;3&quot;},&quot;960&quot;:{&quot;items&quot;:5}},&quot;smartSpeed&quot;:50000,&quot;autoplayTimeout&quot;:50000,&quot;slideTransition&quot;:&quot;linear&quot;,&quot;autoplayDelay&quot;:&quot;false&quot;,&quot;mouseDrag&quot;:&quot;false&quot;,&quot;touchDrag&quot;:&quot;false&quot;}\"><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-nicohuesch.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-menge.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-meg.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-medigogreen.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-lotterie.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-landbauwerk.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><div class=\"wpex-carousel-slide\"><figure class=\"wpex-carousel-entry-media entry-media wpex-relative\"><img src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/referenzen-kueco.svg\" class=\"wpex-align-middle skip-lazy\" alt=\"\" data-no-lazy=\"1\" \/><\/figure><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row&#8220; remove_bottom_col_margin=&#8220;true&#8220; el_class=&#8220;pb-pt-default-half&#8220; wpex_bg_color=&#8220;palette-7082&#8243;][vc_column]<h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter accent-badge\"> <span class=\"wpex-badge\">Hanseatic Datenschutz<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Ein kompetentes <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">Team<\/span><\/span><\/span><\/h2><div class=\"wpex-clear\"><\/div><style>.vcex-image-grid.vcex_6a2cbb59e0d66 .entry-title{color:var(--wpex-palette-7081-color);font-weight:600;}.vcex-image-grid.vcex_6a2cbb59e0d66{--wpex-row-gap:40px;}<\/style><div class=\"vcex-image-grid-wrap\"><div class=\"vcex-module vcex-image-grid grid-style-default wpex-row wpex-clr wpex-lightbox-group vcex_6a2cbb59e0d66\"><div class=\"id-7222 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-1\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Marcel-Helmcke.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" title=\"Abteilung\" data-title=\"Marcel Helmcke\"><img width=\"700\" height=\"700\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Marcel-Helmcke.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"Abteilung\" loading=\"lazy\" decoding=\"async\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">Marcel Helmcke<\/h5><\/figcaption><\/figure><\/div><div class=\"id-7218 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-2\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Gunnar-Warnholz.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" title=\"Abteilung\" data-title=\"Gunnar Warnholz\"><img width=\"700\" height=\"700\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Gunnar-Warnholz.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"Abteilung\" loading=\"lazy\" decoding=\"async\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">Gunnar Warnholz<\/h5><\/figcaption><\/figure><\/div><div class=\"id-7220 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-3\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Laura-Kaiser.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" title=\"Abteilung\" data-title=\"Laura Kaiser\"><img width=\"700\" height=\"700\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Laura-Kaiser.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"Abteilung\" loading=\"lazy\" decoding=\"async\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">Laura Kaiser<\/h5><\/figcaption><\/figure><\/div><div class=\"id-7221 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-4\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Lisa-Patricia-Zbikowski.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" title=\"Abteilung\" data-title=\"Lisa-Patricia Zbikowski\"><img width=\"700\" height=\"700\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Lisa-Patricia-Zbikowski.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"Abteilung\" loading=\"lazy\" decoding=\"async\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">Lisa-Patricia Zbikowski<\/h5><\/figcaption><\/figure><\/div><div class=\"id-7219 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-1\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Jonas-Taha.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" title=\"Abteilung\" data-title=\"Jonas Taha\"><img width=\"700\" height=\"700\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Jonas-Taha.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"Abteilung\" loading=\"lazy\" decoding=\"async\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">Jonas Taha<\/h5><\/figcaption><\/figure><\/div><div class=\"id-7223 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-2\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Rene-Voelker.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" data-title=\"Rene Voelker\"><img width=\"700\" height=\"700\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Rene-Voelker.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"\" loading=\"lazy\" decoding=\"async\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">Rene Voelker<\/h5><\/figcaption><\/figure><\/div><div class=\"id-7216 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-3\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Bobby-Hund.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" title=\"Feel-Good-Manager Bobby\" data-title=\"B\u00fcrohund Bobby\"><img width=\"700\" height=\"700\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/Bobby-Hund.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"Feel-Good-Manager Bobby\" loading=\"lazy\" decoding=\"async\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">B\u00fcrohund Bobby<\/h5><\/figcaption><\/figure><\/div><div class=\"id-7245 vcex-image-grid-entry vcex-grid-item wpex-text-center span_1_of_4 span_1_of_3_tl span_1_of_4_tp span_1_of_2_pl span_1_of_1_pp col col-4\"><figure class=\"vcex-image-grid-entry-figure wpex-last-mb-0 wpex-clr\"><div class=\"vcex-image-grid-entry-img entry-media wpex-relative wpex-rounded-full wpex-mb-20\"><a href=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/nicole-rauch-scaled-e1755850560893.jpg\" class=\"vcex-image-grid-entry-link wpex-lightbox-group-item\" data-title=\"Nicole Rauch\"><img width=\"1000\" height=\"1000\" src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/nicole-rauch-scaled-e1755850560893.jpg\" class=\"wpex-aspect-1-1 wpex-object-cover wpex-align-middle wpex-rounded-full\" alt=\"\" loading=\"lazy\" decoding=\"async\" srcset=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/nicole-rauch-scaled-e1755850560893.jpg 1000w, https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/08\/nicole-rauch-scaled-e1755850560893-768x768.jpg 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/a><\/div><figcaption class=\"vcex-image-grid-entry-title wpex-mb-10 wpex-clr\"><h5 class=\"entry-title\">Nicole Rauch<\/h5><\/figcaption><\/figure><\/div><\/div><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8220;stretch_row&#8220; remove_bottom_col_margin=&#8220;true&#8220; wpex_shape_divider_top=&#8220;triangle&#8220; css=&#8220;.vc_custom_1753906404408{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8220; wpex_bg_color=&#8220;accent&#8220; wpex_bg_position=&#8220;50%&#8220; el_class=&#8220;pt-default-x2 pb-default white&#8220; wpex_shape_divider_top_color=&#8220;#e9e9e9&#8243; wpex_shape_divider_top_height=&#8220;100&#8243;][vc_column]<style>.vcex-heading.vcex_6a2cbb59e3870 .vcex-heading-badge{background-color:#ffffff;}<\/style><h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter\"> <span class=\"wpex-badge\" style=\"background-color:#ffffff;\">Vertrauen<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Sch\u00fctzen Sie <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">JETZT<\/span><\/span> Ihr Unternehmen<\/span><\/h2><div class=\"wpex-clear\"><\/div>[vc_column_text css=&#8220;&#8220; width=&#8220;900px&#8220; font_size=&#8220;1.5em&#8220; text_align=&#8220;center&#8220; letter_spacing=&#8220;wide&#8220;]Jeden Tag ohne professionellen Datenschutz ist ein Risiko zu viel. Sichern Sie sich heute noch Ihren Expertenplatz.[\/vc_column_text]<div class=\"vcex-spacing wpex-w-100 wpex-clear\" style=\"height:40px;\"><\/div><style>.vcex-button.vcex_6a2cbb59e480f{background:var(--wpex-palette-7083-color);color:var(--wpex-palette-7081-color)!important;}.vcex-button.vcex_6a2cbb59e480f:hover{background:var(--wpex-palette-7081-color)!important;color:var(--wpex-on-accent)!important;}<\/style><div class=\"theme-button-wrap textcenter wpex-clr\"><a href=\"#cta\" class=\"vcex-button theme-button align-center inline pulse-button wpex-lightbox vcex_6a2cbb59e480f\" data-type=\"inline\" aria-label=\"Kontakt zu Hanseatic Datenschutz\"><span class=\"vcex-button-inner theme-button-inner wpex-flex wpex-flex-wrap wpex-items-center wpex-justify-center\"><span class=\"vcex-button-icon vcex-icon-wrap theme-button-icon-left\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 448 512\"><path d=\"M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z\"\/><\/svg><\/span><\/span>Jetzt Kostenfreie Beratung sichern<\/span><\/a><\/div> [vc_column_text css=&#8220;.vc_custom_1777924289240{margin-top: 20px !important;}&#8220; text_align=&#8220;center&#8220; font_weight=&#8220;bold&#8220;]* Nur noch wenige freie Termine[\/vc_column_text]<style>.vcex_6a2cbb59e4d63{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59e4d63{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59e4d63{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59e4d63{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59e4d63{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59e4d63\"><\/div><style>.vcex-flex-container_6a2cbb59e5165{max-width:600px;}@media only screen and (min-width: 768px) {.vcex-flex-container_6a2cbb59e5165 > * {flex-basis:fit-content;flex-grow:0;flex-shrink:1;}}@media only screen and (max-width: 767px) {.vcex-flex-container_6a2cbb59e5165{gap:0px;}}.vcex-heading.vcex_6a2cbb59e568f{font-size:1em;}.vcex-heading.vcex_6a2cbb59e5d87{font-size:1em;}.vcex-heading.vcex_6a2cbb59e638f{font-size:1em;}<\/style><div class=\"vcex-flex-container vcex-module wpex-flex wpex-gap-20 wpex-mx-auto wpex-flex-wrap wpex-flex-col wpex-md-flex-row wpex-md-items-center wpex-md-justify-center vcex-flex-container_6a2cbb59e5165\"><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter\" style=\"font-size:1em;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"vcex-icon-wrap wpex-mr-15\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z\"\/><\/svg><\/span><\/span>Unverbindlich<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter\" style=\"font-size:1em;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"vcex-icon-wrap wpex-mr-15\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z\"\/><\/svg><\/span><\/span>Keine versteckten Kosten<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter\" style=\"font-size:1em;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"vcex-icon-wrap wpex-mr-15\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z\"\/><\/svg><\/span><\/span>Sofort verf\u00fcgbar<\/span><\/div><div class=\"wpex-clear\"><\/div><\/div><div class=\"vcex-shortcode wpex-clr hidden\" id=\"cta\"><div class=\"wpex-template-shortcode\"><div class=\"vc_row wpb_row vc_row-fluid responsive-padding-default white wpex-relative wpex-vc_row-has-fill no-bottom-margins wpex-vc-reset-negative-margin wpex-has-overlay wpex-has-overlay--6a2cbb59e7a9c wpex-has-video-bg\" style=\"background-color:var(--wpex-accent)!important;\"><div class=\"wpex-video-bg-wrap wpex-absolute wpex-inset-0 wpex-overflow-hidden wpex-rounded-inherit\"><video class=\"wpex-video-bg wpex-video-bg-center wpex-absolute wpex-top-50 wpex-left-50 -wpex-translate-xy-50 wpex-w-auto wpex-h-auto wpex-min-w-100 wpex-min-h-100 wpex-max-w-none\" preload=\"auto\" autoplay=\"true\" aria-hidden=\"true\" playsinline loop=\"loop\" muted volume=\"0\"><source src=\"https:\/\/www.ha-ds.de\/dsb\/wp-content\/uploads\/2025\/07\/dots-animation.webm\" type=\"video\/webm\"><\/video><\/div><div class=\"wpex-bg-overlay-wrap wpex-absolute wpex-inset-0 wpex-rounded-inherit\"><style class=\"wpex-bg-overlay-css\">.wpex-has-overlay--6a2cbb59e7a9c > .wpex-bg-overlay-wrap .wpex-bg-overlay{background-color:var(--wpex-accent);opacity:.95;}<\/style><span class=\"wpex-bg-overlay color wpex-absolute wpex-inset-0 wpex-rounded-inherit wpex-duration-500 wpex-opacity-60 wpex-bg-black\"><\/span><\/div><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\"><style>.vcex-heading.vcex_6a2cbb59e83e6 .vcex-heading-badge{background-color:#ffffff;}<\/style><h2 class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-h2 wpex-block wpex-text-center aligncenter\"> <span class=\"wpex-badge\" style=\"background-color:#ffffff;\">Kostenlose Beratung<\/span><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\">Nur noch ein Schritt zu mehr <span class=\"wpex-highlight\"><span class=\"wpex-highlight__bg wpex-bg-accent wpex-after\"><\/span><span class=\"wpex-highlight__text wpex-relative\">Datenschutz<\/span><\/span><\/span><\/h2><div class=\"wpex-clear\"><\/div><style>.vcex-flex-container_6a2cbb59e8a03{max-width:600px;}@media only screen and (min-width: 768px) {.vcex-flex-container_6a2cbb59e8a03 > * {flex-basis:fit-content;flex-grow:0;flex-shrink:1;}}@media only screen and (max-width: 767px) {.vcex-flex-container_6a2cbb59e8a03{gap:0px;}}.vcex-heading.vcex_6a2cbb59e8db1{font-size:1em;}.vcex-heading.vcex_6a2cbb59e940a{font-size:1em;}.vcex-heading.vcex_6a2cbb59e99ff{font-size:1em;}<\/style><div class=\"vcex-flex-container vcex-module wpex-flex wpex-gap-20 wpex-mx-auto wpex-flex-wrap wpex-flex-col wpex-md-flex-row wpex-md-items-center wpex-md-justify-center vcex-flex-container_6a2cbb59e8a03\"><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter\" style=\"font-size:1em;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"vcex-icon-wrap wpex-mr-15\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z\"\/><\/svg><\/span><\/span>Unverbindlich<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter\" style=\"font-size:1em;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"vcex-icon-wrap wpex-mr-15\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z\"\/><\/svg><\/span><\/span>Keine versteckten Kosten<\/span><\/div><div class=\"wpex-clear\"><\/div><div class=\"vcex-heading vcex-module wpex-text-2xl wpex-font-normal wpex-m-auto wpex-max-w-100 vcex-heading-plain wpex-block aligncenter\" style=\"font-size:1em;\"><span class=\"vcex-heading-inner wpex-inline-block wpex-clr\"><span class=\"vcex-icon-wrap wpex-mr-15\"><span class=\"wpex-icon\" aria-hidden=\"true\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\"><path d=\"M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z\"\/><\/svg><\/span><\/span>Sofort verf\u00fcgbar<\/span><\/div><div class=\"wpex-clear\"><\/div><\/div><style>.vcex_6a2cbb59e9df1{height:80px;}@media (max-width:1024px){.vcex_6a2cbb59e9df1{height:80px;}}@media (max-width:959px){.vcex_6a2cbb59e9df1{height:80px;}}@media (max-width:767px){.vcex_6a2cbb59e9df1{height:50px;}}@media (max-width:479px){.vcex_6a2cbb59e9df1{height:50px;}}<\/style><div class=\"vcex-spacing wpex-w-100 wpex-clear vcex_6a2cbb59e9df1\"><\/div><div class=\"vcex-shortcode wpex-clr\"><div class=\"forminator-ui forminator-custom-form forminator-custom-form-7074 forminator-design--basic  forminator_ajax\" data-forminator-render=\"0\" data-form=\"forminator-module-7074\" data-uid=\"6a2cbb59e9f9d\"><br\/><\/div><form\n\t\t\t\tid=\"forminator-module-7074\"\n\t\t\t\tclass=\"forminator-ui forminator-custom-form forminator-custom-form-7074 forminator-design--basic  forminator_ajax\"\n\t\t\t\tmethod=\"post\"\n\t\t\t\tdata-forminator-render=\"0\"\n\t\t\t\tdata-form-id=\"7074\"\n\t\t\t\t data-color-option=\"theme\" data-design=\"basic\" data-grid=\"open\" style=\"display: none;\"\n\t\t\t\tdata-uid=\"6a2cbb59e9f9d\"\n\t\t\t><div role=\"alert\" aria-live=\"polite\" class=\"forminator-response-message forminator-error\" aria-hidden=\"true\"><\/div><div class=\"forminator-row\"><div id=\"name-1\" class=\"forminator-field-name forminator-col forminator-col-6 \"><div class=\"forminator-field\"><label for=\"forminator-field-name-1_6a2cbb59e9f9d\" id=\"forminator-field-name-1_6a2cbb59e9f9d-label\" class=\"forminator-label\">Vorname <span class=\"forminator-required\">*<\/span><\/label><input type=\"text\" name=\"name-1\" value=\"\" placeholder=\"Vorname\" id=\"forminator-field-name-1_6a2cbb59e9f9d\" class=\"forminator-input forminator-name--field\" aria-required=\"true\" autocomplete=\"name\" \/><\/div><\/div><div id=\"name-2\" class=\"forminator-field-name forminator-col forminator-col-6 \"><div class=\"forminator-field\"><label for=\"forminator-field-name-2_6a2cbb59e9f9d\" id=\"forminator-field-name-2_6a2cbb59e9f9d-label\" class=\"forminator-label\">Nachname <span class=\"forminator-required\">*<\/span><\/label><input type=\"text\" name=\"name-2\" value=\"\" placeholder=\"Nachname\" id=\"forminator-field-name-2_6a2cbb59e9f9d\" class=\"forminator-input forminator-name--field\" aria-required=\"true\" autocomplete=\"name\" \/><\/div><\/div><\/div><div class=\"forminator-row\"><div id=\"email-1\" class=\"forminator-field-email forminator-col forminator-col-6 \"><div class=\"forminator-field\"><label for=\"forminator-field-email-1_6a2cbb59e9f9d\" id=\"forminator-field-email-1_6a2cbb59e9f9d-label\" class=\"forminator-label\">E-Mail <span class=\"forminator-required\">*<\/span><\/label><input type=\"email\" name=\"email-1\" value=\"\" placeholder=\"E-Mail\" id=\"forminator-field-email-1_6a2cbb59e9f9d\" class=\"forminator-input forminator-email--field\" data-required=\"1\" aria-required=\"true\" autocomplete=\"email\" \/><\/div><\/div><div id=\"phone-1\" class=\"forminator-field-phone forminator-col forminator-col-6 \"><div class=\"forminator-field\"><label for=\"forminator-field-phone-1_6a2cbb59e9f9d\" id=\"forminator-field-phone-1_6a2cbb59e9f9d-label\" class=\"forminator-label\">Telefon <span class=\"forminator-required\">*<\/span><\/label><input type=\"text\" name=\"phone-1\" value=\"\" placeholder=\"Telefon\" id=\"forminator-field-phone-1_6a2cbb59e9f9d\" class=\"forminator-input forminator-field--phone\" data-required=\"1\" aria-required=\"true\" autocomplete=\"off\" \/><\/div><\/div><\/div><input type=\"hidden\" name=\"referer_url\" value=\"\" \/><div class=\"forminator-row forminator-row-last\"><div class=\"forminator-col\"><div class=\"forminator-field\"><button class=\"forminator-button forminator-button-submit\">Jetzt kostenfreie Beratung sichern<\/button><\/div><\/div><\/div><input type=\"hidden\" id=\"forminator_nonce\" name=\"forminator_nonce\" value=\"5e936a9d83\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/dsb\/wp-json\/wp\/v2\/pages\/2\" \/><input type=\"hidden\" name=\"form_id\" value=\"7074\"><input type=\"hidden\" name=\"page_id\" value=\"7245\"><input type=\"hidden\" name=\"form_type\" value=\"default\"><input type=\"hidden\" name=\"current_url\" value=\"https:\/\/www.ha-ds.de\/dsb\/nicole-rauch\/\"><input type=\"hidden\" name=\"render_id\" value=\"0\"><input type=\"hidden\" name=\"action\" value=\"forminator_submit_form_custom-forms\"><\/form><\/div><\/div><\/div><\/div><\/div>\n<\/div><\/div>[\/vc_column][\/vc_row]\n<\/div>","protected":false},"excerpt":{"rendered":"Abteilung X","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_seopress_titles_title":"","_seopress_titles_desc":"","_seopress_robots_index":"","_seopress_robots_follow":"","_seopress_robots_imageindex":"","_seopress_robots_snippet":"","_seopress_robots_primary_cat":"","_seopress_robots_breadcrumbs":"","_seopress_robots_freeze_modified_date":"","_seopress_robots_custom_modified_date":"","_seopress_robots_canonical":"","_seopress_social_fb_title":"","_seopress_social_fb_desc":"","_seopress_social_fb_img":"","_seopress_social_fb_img_attachment_id":0,"_seopress_social_fb_img_width":0,"_seopress_social_fb_img_height":0,"_seopress_social_twitter_title":"","_seopress_social_twitter_desc":"","_seopress_social_twitter_img":"","_seopress_social_twitter_img_attachment_id":0,"_seopress_social_twitter_img_width":0,"_seopress_social_twitter_img_height":0,"_seopress_redirections_value":"","_seopress_redirections_enabled":"","_seopress_redirections_enabled_regex":"","_seopress_redirections_logged_status":"both","_seopress_redirections_param":"","_seopress_redirections_type":301,"_seopress_analysis_target_kw":"","footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry","entry","no-media"],"_links":{"self":[{"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/comments?post=2"}],"version-history":[{"count":217,"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":7487,"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/pages\/2\/revisions\/7487"}],"wp:attachment":[{"href":"https:\/\/www.ha-ds.de\/dsb\/wp-json\/wp\/v2\/media?parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}