{"id":2263,"date":"2026-04-06T06:49:57","date_gmt":"2026-04-06T06:49:57","guid":{"rendered":"https:\/\/advior.ch\/privacy-policy\/"},"modified":"2026-04-15T20:36:03","modified_gmt":"2026-04-15T20:36:03","slug":"privacy-policy","status":"publish","type":"page","link":"https:\/\/advior.ch\/en\/privacy-policy\/","title":{"rendered":"Privacy Policy"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2263\" class=\"elementor elementor-2263 elementor-950\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c729592 e-flex e-con-boxed e-con e-parent\" data-id=\"c729592\" data-element_type=\"container\" data-e-type=\"container\" id=\"neural-section\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-54e1c36 elementor-widget elementor-widget-heading\" data-id=\"54e1c36\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Privacy Policy<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1fb58f8 elementor-widget elementor-widget-html\" data-id=\"1fb58f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>document.addEventListener('DOMContentLoaded', function () {\n\n  \/* \u2500\u2500 KONFIGURATION (Dark \/ Negativ) \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n  var CONFIG = {\n    containerID:       'neural-section',\n\n    globalOpacity:     1.0,\n    dotCount:          120,\n    connectionDist:    180,\n    mouseRadius:       200,\n    dotMinRadius:      1,\n    dotMaxRadius:      3,\n    baseOpacityMin:    0.06,\n    baseOpacityMax:    0.25,\n    mouseOpacityBoost: 0.85,\n    parallaxFactor:    0.06,\n    speed:             0.3,\n    dotColor:          '0,0,0',\n    lineColor:         '0,0,0',\n    lineMaxOpacity:    0.2,\n    lineWidth:         0.6,\n\n    mouseGlow:         true,\n    mouseGlowRadius:   160,\n    mouseGlowOpacity:  0.06\n  };\n  \/* \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 *\/\n\n  var container = document.getElementById(CONFIG.containerID);\n  if (!container) {\n    console.warn('Neural BG: #' + CONFIG.containerID + ' nicht gefunden');\n    return;\n  }\n\n  if (getComputedStyle(container).position === 'static') {\n    container.style.position = 'relative';\n  }\n  container.style.overflow = 'hidden';\n\n  var canvas = document.createElement('canvas');\n  canvas.style.cssText =\n    'position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;pointer-events:auto;';\n  container.insertBefore(canvas, container.firstChild);\n\n  var kids = container.children;\n  for (var c = 0; c < kids.length; c++) {\n    if (kids[c] !== canvas) {\n      if (getComputedStyle(kids[c]).position === 'static') {\n        kids[c].style.position = 'relative';\n      }\n      kids[c].style.zIndex = '2';\n    }\n  }\n\n  var ctx = canvas.getContext('2d');\n  var W = 0, H = 0;\n  var dots = [];\n  var mouse = { x: -9999, y: -9999, active: false };\n\n  function resize() {\n    var dpr = window.devicePixelRatio || 1;\n    W = container.offsetWidth;\n    H = container.offsetHeight;\n    canvas.width = W * dpr;\n    canvas.height = H * dpr;\n    ctx.setTransform(dpr, 0, 0, dpr, 0, 0);\n  }\n\n  function createDot() {\n    var x = Math.random() * W;\n    var y = Math.random() * H;\n    return {\n      x: x, y: y,\n      baseX: x, baseY: y,\n      vx: (Math.random() - 0.5) * CONFIG.speed * 2,\n      vy: (Math.random() - 0.5) * CONFIG.speed * 2,\n      r: CONFIG.dotMinRadius + Math.random() * (CONFIG.dotMaxRadius - CONFIG.dotMinRadius),\n      baseOpacity: CONFIG.baseOpacityMin + Math.random() * (CONFIG.baseOpacityMax - CONFIG.baseOpacityMin)\n    };\n  }\n\n  function init() {\n    resize();\n    dots = [];\n    for (var i = 0; i < CONFIG.dotCount; i++) {\n      dots.push(createDot());\n    }\n  }\n\n  function distTo(ax, ay, bx, by) {\n    var dx = ax - bx, dy = ay - by;\n    return Math.sqrt(dx * dx + dy * dy);\n  }\n\n  function dotOpacity(d) {\n    if (!mouse.active) return d.baseOpacity;\n    var dist = distTo(mouse.x, mouse.y, d.x, d.y);\n    var prox = Math.max(0, 1 - dist \/ CONFIG.mouseRadius);\n    prox = prox * prox * (3 - 2 * prox);\n    return d.baseOpacity + (CONFIG.mouseOpacityBoost - d.baseOpacity) * prox;\n  }\n\n  function loop() {\n    ctx.clearRect(0, 0, W, H);\n    var i, j, d, dx, dy, dist, str, avgO, o;\n\n    for (i = 0; i < dots.length; i++) {\n      d = dots[i];\n      d.baseX += d.vx;\n      d.baseY += d.vy;\n      if (d.baseX < 0 || d.baseX > W) d.vx *= -1;\n      if (d.baseY < 0 || d.baseY > H) d.vy *= -1;\n      d.baseX = Math.max(0, Math.min(W, d.baseX));\n      d.baseY = Math.max(0, Math.min(H, d.baseY));\n\n      if (mouse.active) {\n        d.x = d.baseX + (mouse.x - d.baseX) * CONFIG.parallaxFactor;\n        d.y = d.baseY + (mouse.y - d.baseY) * CONFIG.parallaxFactor;\n      } else {\n        d.x = d.baseX;\n        d.y = d.baseY;\n      }\n    }\n\n    if (CONFIG.mouseGlow && mouse.active) {\n      var grd = ctx.createRadialGradient(\n        mouse.x, mouse.y, 0,\n        mouse.x, mouse.y, CONFIG.mouseGlowRadius\n      );\n      grd.addColorStop(0, 'rgba(0,0,0,' + CONFIG.mouseGlowOpacity + ')');\n      grd.addColorStop(1, 'rgba(0,0,0,0)');\n      ctx.beginPath();\n      ctx.arc(mouse.x, mouse.y, CONFIG.mouseGlowRadius, 0, 6.2832);\n      ctx.fillStyle = grd;\n      ctx.fill();\n    }\n\n    for (i = 0; i < dots.length; i++) {\n      for (j = i + 1; j < dots.length; j++) {\n        dx = dots[i].x - dots[j].x;\n        dy = dots[i].y - dots[j].y;\n        dist = Math.sqrt(dx * dx + dy * dy);\n        if (dist < CONFIG.connectionDist) {\n          str = 1 - dist \/ CONFIG.connectionDist;\n          avgO = (dotOpacity(dots[i]) + dotOpacity(dots[j])) * 0.5;\n          o = str * str * avgO * CONFIG.lineMaxOpacity * CONFIG.globalOpacity;\n          ctx.beginPath();\n          ctx.moveTo(dots[i].x, dots[i].y);\n          ctx.lineTo(dots[j].x, dots[j].y);\n          ctx.strokeStyle = 'rgba(' + CONFIG.lineColor + ',' + o + ')';\n          ctx.lineWidth = CONFIG.lineWidth;\n          ctx.stroke();\n        }\n      }\n    }\n\n    for (i = 0; i < dots.length; i++) {\n      d = dots[i];\n      o = dotOpacity(d) * CONFIG.globalOpacity;\n      ctx.beginPath();\n      ctx.arc(d.x, d.y, d.r, 0, 6.2832);\n      ctx.fillStyle = 'rgba(' + CONFIG.dotColor + ',' + o + ')';\n      ctx.fill();\n    }\n\n    requestAnimationFrame(loop);\n  }\n\n  container.addEventListener('mousemove', function (e) {\n    var rect = canvas.getBoundingClientRect();\n    mouse.x = e.clientX - rect.left;\n    mouse.y = e.clientY - rect.top;\n    mouse.active = true;\n  });\n  container.addEventListener('mouseleave', function () {\n    mouse.active = false;\n  });\n\n  container.addEventListener('touchmove', function (e) {\n    var rect = canvas.getBoundingClientRect();\n    var touch = e.touches[0];\n    mouse.x = touch.clientX - rect.left;\n    mouse.y = touch.clientY - rect.top;\n    mouse.active = true;\n  });\n  container.addEventListener('touchend', function () {\n    mouse.active = false;\n  });\n\n  var rt;\n  window.addEventListener('resize', function () {\n    clearTimeout(rt);\n    rt = setTimeout(init, 200);\n  });\n\n  init();\n  loop();\n\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7a5cb00 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7a5cb00\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>In this Privacy Policy, we, Advior CM&amp;S Ltd (hereinafter \u201cwe\u201d), explain how we collect and process personal data. This is not an exhaustive description; specific matters may be governed by other privacy policies or our General Terms and Conditions.<\/p><p>Personal data refers to any information relating to an identified or identifiable individual.<br><span style=\"font-size: 1.1rem;\"><br><\/span><\/p><h6><span style=\"font-size: 1.1rem;\">1. Data Controller<\/span><\/h6><p>The entity responsible for the data processing described here is:<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-11ba7f8 obf-impressum elementor-widget__width-initial elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"11ba7f8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Advior CM&amp;S AG<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Militaerstrasse 76<br>CH-8004 Zurich<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">m: -<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">t: -<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3d83724 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"3d83724\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>2. Collection and Processing of Personal Data<\/p>\n<p>We primarily process personal data that we receive from our customers and other business partners, as well as from other relevant individuals, during our business relationships with them, or that we collect from users of our website during its operation.<\/p>\n<h6>3. Use of Website<\/h6>\n<p>When you access our website, general information is automatically collected (log files). This data (e.g., IP address, date\/time of access, browser type) is technically necessary to display the website correctly and ensure security. It does not allow us to identify you personally. It does not allow us to identify you personally.<\/p>\n<h6>4. Contact Form and Email<\/h6>\n<p>If you submit inquiries to us via the contact form or by email, we will store the information you provide in the inquiry form \u2013 including the contact details you provide there (name, email address, and phone number, if applicable) \u2013 for the purpose of processing your inquiry and in case we have follow-up questions. We will not share this information without your consent.<\/p>\n<h6>5. Cookies and Analytics<\/h6>\n<p>Our website is designed to be privacy-friendly. <br>We do not use tracking tools such as Google Analytics or similar services to monitor user behavior.<br>Our website uses only technically necessary and functional cookies required for the proper operation of the site. These cookies are not used for personal tracking and are deployed based on our legitimate interest in a functional web presence (Art. 31 para. 1 FADP in conjunction with Art. 6 para. 6 and 7 DPO). To the extent that our website is also visited by users from the European Economic Area, we additionally rely on Art. 6 para. 1 lit. f GDPR.<br>Specifically, we use the following cookies:    <\/p>\n<ul>\n<li><b>wp-wpml_current_language<\/b> \u2013 Stores the language version of the website you have selected. (Provider: advior.ch. Retention period: Session. Category: Functional.) <\/li>\n<li><b>wpEmojiSettingsSupports <\/b>\u2013 Checks whether your browser supports the display of emojis. Provider: advior.ch (WordPress Core). Retention period: Session. Category: Technically necessary.   <\/li>\n<\/ul><div><br><\/div>\n<h6>6. Purpose of Data Processing<\/h6>\n<p>We primarily use personal data to maintain our relationships with clients, prospects, and other contacts, as well as for communication purposes, including sending newsletters, event invitations, and managing our contact list. We process and store your personal data for as long as necessary to fulfill the engagements with our clients and business partners, to comply with our legal obligations in Switzerland and abroad, and to achieve the purposes for which the data is processed.<\/p>\n<h6>7. Data Transfer and Transmission Abroad<\/h6>\n<p>During our business activities, we also disclose data to third parties (e.g., IT providers or government authorities) to the extent permitted by law and where we deem it appropriate. These recipients are primarily located within Switzerland. These recipients are primarily located within Switzerland.<\/p>\n<h6>8. Retention Period for Personal Data<\/h6>\n<p>We process and store your personal data for as long as necessary to fulfill our contractual and legal obligations or to achieve the purposes for which the data is processed, and in accordance with legal retention and documentation requirements.<\/p>\n<h6>9. Data Security<\/h6>\n<p>We implement appropriate technical and organizational security measures to protect your personal data from unauthorized access and misuse (e.g. SSL encryption on our website).<\/p>\n<h6>10. Your Rights<\/h6>\n<p>Under the data protection laws applicable to you, you have the right to:<\/p>\n<ul>\n<li>Obtain information about the data we have stored about you,<\/li>\n<li>Correct inaccurate data,<\/li>\n<li>have your data deleted (provided there is no legal obligation to retain it),<\/li>\n<li>restrict or object to our processing of your data.<\/li>\n<\/ul>\n<p>To exercise your rights, please contact us at the address provided in Section 1.9. Changes<\/p>\n<h6>11. Changes<\/h6>\n<p>We may update this Privacy Policy at any time without prior notice. The most recent version published on our website is the one that applies. The German version takes precedence. The German version takes precedence.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6eeb788 elementor-widget elementor-widget-html\" data-id=\"6eeb788\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>document.addEventListener('DOMContentLoaded', function() {\n  var widget = document.querySelector('.obf-impressum');\n  if (!widget) return;\n  var items = widget.querySelectorAll('.elementor-icon-list-item');\n\n  \/\/ 3. Eintrag = E-Mail (Index 2)\n  if (items[2]) {\n    var span = items[2].querySelector('.elementor-icon-list-text');\n    if (span) {\n      var a = document.createElement('a');\n      var ve1 = 'info', ve2 = 'advior', ve3 = 'ch';\n      a.href = 'mai' + 'lto:' + ve1 + '@' + ve2 + '.' + ve3;\n      a.textContent = 'm: ' + ve1 + '@' + ve2 + '.' + ve3;\n      a.style.color = 'inherit';\n      a.style.textDecoration = 'none';\n      span.textContent = '';\n      span.appendChild(a);\n    }\n  }\n\n  \/\/ 4. Eintrag = Telefon (Index 3)\n  if (items[3]) {\n    var span = items[3].querySelector('.elementor-icon-list-text');\n    if (span) {\n      var a = document.createElement('a');\n      var vp1 = '+41 44', vp2 = ' 442', vp3 = ' 60 55';\n      a.href = 'tel:' + (vp1+vp2+vp3).replace(\/\\s\/g, '');\n      a.textContent = 't: ' + vp1 + vp2 + vp3;\n      a.style.color = 'inherit';\n      a.style.textDecoration = 'none';\n      span.textContent = '';\n      span.appendChild(a);\n    }\n  }\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Privacy Policy In this Privacy Policy, we, Advior CM&amp;S Ltd (hereinafter \u201cwe\u201d), explain how we collect and process personal data. This is not an exhaustive description; specific matters may be governed by other privacy policies or our General Terms and Conditions. Personal data refers to any information relating to an identified or identifiable individual. 1. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2263","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Privacy Policy - Advior CM&amp;S AG<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/advior.ch\/en\/privacy-policy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Privacy Policy - Advior CM&amp;S AG\" \/>\n<meta property=\"og:description\" content=\"Privacy Policy In this Privacy Policy, we, Advior CM&amp;S Ltd (hereinafter \u201cwe\u201d), explain how we collect and process personal data. This is not an exhaustive description; specific matters may be governed by other privacy policies or our General Terms and Conditions. Personal data refers to any information relating to an identified or identifiable individual. 1. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/advior.ch\/en\/privacy-policy\/\" \/>\n<meta property=\"og:site_name\" content=\"Advior CM&amp;S AG\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-15T20:36:03+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/advior.ch\\\/en\\\/privacy-policy\\\/\",\"url\":\"https:\\\/\\\/advior.ch\\\/en\\\/privacy-policy\\\/\",\"name\":\"Privacy Policy - Advior CM&amp;S AG\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/advior.ch\\\/#website\"},\"datePublished\":\"2026-04-06T06:49:57+00:00\",\"dateModified\":\"2026-04-15T20:36:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/advior.ch\\\/en\\\/privacy-policy\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/advior.ch\\\/en\\\/privacy-policy\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/advior.ch\\\/en\\\/privacy-policy\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Start\",\"item\":\"https:\\\/\\\/advior.ch\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Privacy Policy\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/advior.ch\\\/#website\",\"url\":\"https:\\\/\\\/advior.ch\\\/\",\"name\":\"Advior CM&S AG\",\"description\":\"Independent M&amp;A advisory boutique in Zurich. Sell-side, buy-side, MBO, and special situations. 75+ years of combined transaction experience.\",\"publisher\":{\"@id\":\"https:\\\/\\\/advior.ch\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/advior.ch\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/advior.ch\\\/#organization\",\"name\":\"Advior CM&S AG\",\"url\":\"https:\\\/\\\/advior.ch\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/advior.ch\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/advior.ch\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/logo.svg\",\"contentUrl\":\"https:\\\/\\\/advior.ch\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/logo.svg\",\"width\":3751,\"height\":484,\"caption\":\"Advior CM&S AG\"},\"image\":{\"@id\":\"https:\\\/\\\/advior.ch\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Privacy Policy - Advior CM&amp;S AG","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/advior.ch\/en\/privacy-policy\/","og_locale":"en_US","og_type":"article","og_title":"Privacy Policy - Advior CM&amp;S AG","og_description":"Privacy Policy In this Privacy Policy, we, Advior CM&amp;S Ltd (hereinafter \u201cwe\u201d), explain how we collect and process personal data. This is not an exhaustive description; specific matters may be governed by other privacy policies or our General Terms and Conditions. Personal data refers to any information relating to an identified or identifiable individual. 1. [&hellip;]","og_url":"https:\/\/advior.ch\/en\/privacy-policy\/","og_site_name":"Advior CM&amp;S AG","article_modified_time":"2026-04-15T20:36:03+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/advior.ch\/en\/privacy-policy\/","url":"https:\/\/advior.ch\/en\/privacy-policy\/","name":"Privacy Policy - Advior CM&amp;S AG","isPartOf":{"@id":"https:\/\/advior.ch\/#website"},"datePublished":"2026-04-06T06:49:57+00:00","dateModified":"2026-04-15T20:36:03+00:00","breadcrumb":{"@id":"https:\/\/advior.ch\/en\/privacy-policy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/advior.ch\/en\/privacy-policy\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/advior.ch\/en\/privacy-policy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Start","item":"https:\/\/advior.ch\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Privacy Policy"}]},{"@type":"WebSite","@id":"https:\/\/advior.ch\/#website","url":"https:\/\/advior.ch\/","name":"Advior CM&S AG","description":"Independent M&amp;A advisory boutique in Zurich. Sell-side, buy-side, MBO, and special situations. 75+ years of combined transaction experience.","publisher":{"@id":"https:\/\/advior.ch\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/advior.ch\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/advior.ch\/#organization","name":"Advior CM&S AG","url":"https:\/\/advior.ch\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/advior.ch\/#\/schema\/logo\/image\/","url":"https:\/\/advior.ch\/wp-content\/uploads\/2024\/10\/logo.svg","contentUrl":"https:\/\/advior.ch\/wp-content\/uploads\/2024\/10\/logo.svg","width":3751,"height":484,"caption":"Advior CM&S AG"},"image":{"@id":"https:\/\/advior.ch\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/pages\/2263","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/comments?post=2263"}],"version-history":[{"count":8,"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/pages\/2263\/revisions"}],"predecessor-version":[{"id":2602,"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/pages\/2263\/revisions\/2602"}],"wp:attachment":[{"href":"https:\/\/advior.ch\/en\/wp-json\/wp\/v2\/media?parent=2263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}