/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181c20; /* fallback solid color */
  font-family: 'Open Sans', Arial, sans-serif;
  color: #f8f8f8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #00adb5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 5px #00adb5, 0 0 2px #222831;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
  box-sizing: border-box;
}
:focus {
  outline: 2px solid #00adb5;
  outline-offset: 2px;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* BRAND VARIABLES */
:root {
  --color-primary: #222831;
  --color-secondary: #00adb5;
  --color-accent: #f8f8f8;
  --color-dark: #181c20;
  --color-hero-gradient1: #222831;
  --color-hero-gradient2: #21243b;
  --color-testimonial-bg: #fafcff;
  --color-card-bg: #232934;
  --color-neon: #00f5d4;
  --color-error: #ff3860;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,173,181,0.1), 0 1.5px 0px 0 var(--color-secondary) inset;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 36px 0 rgba(0,242,245,0.14), 0 1.5px 0px 0 var(--color-neon) inset, 0 0 8px 0 var(--color-neon);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-testimonial-bg);
  color: #222831;
  border-radius: 14px;
  box-shadow: 0 4px 32px -4px rgba(0,173,181,0.1), 0 1px 8px -2px #a3f7bf24;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px -4px rgba(0,173,181,0.22), 0 0 8px 0 var(--color-neon);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card .stars {
  color: #ffc107;
  letter-spacing: 2px;
  font-size: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(115deg, var(--color-hero-gradient1) 55%, var(--color-hero-gradient2) 100%);
  border-bottom: 2px solid #00adb533;
  width: 100%;
  padding: 64px 0;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 8px #00adb577, 0 1px 2px #000a;
  letter-spacing: 0.01em;
}
.hero p {
  color: #f8f8f8;
  font-size: 1.15rem;
}
.hero .cta-primary {
  margin-top: 20px;
}

/* NAVIGATION */
header {
  background: var(--color-primary);
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,173,181,0.07);
  position: relative;
  z-index: 48;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  color: #f8f8f8;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: rgba(0, 173, 181, 0.14);
  color: #00adb5;
  box-shadow: 0 1px 8px var(--color-neon);
}

.cta-primary {
  background: linear-gradient(90deg, #00adb5 40%, #00f5d4 100%);
  color: #181c20;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.62em 2.1em;
  border-radius: 7px;
  box-shadow: 0 1px 8px 0 #00adb53d;
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 1px #fff4;
  transition: background 0.19s, color 0.19s, box-shadow 0.21s, transform 0.16s;
  display: inline-block;
  margin-left: 18px;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(95deg, #00f5d4 0%, #00adb5 90%);
  color: #0a2323;
  box-shadow: 0 4px 28px 3px #00f5d455, 0 1.5px 0px 0 var(--color-neon) inset;
  transform: scale(1.03) translateY(-1px);
}
.cta-secondary {
  background: transparent;
  border: 1.5px solid #00adb5;
  color: #00adb5;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.56em 1.8em;
  border-radius: 7px;
  margin-top: 6px;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.16s;
  position: relative;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #00adb533;
  color: #fff;
  border-color: #00f5d4;
  box-shadow: 0 0 10px #00f5d4;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #00adb5;
  border: none;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
  z-index: 98;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #181c2066;
  color: #f8f8f8;
}

/* MOBILE MENU (Overlay) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 340px;
  background: #232934ee;
  box-shadow: -4px 0 24px 0 #00adb53e, 0 0px 24px 0 #00f5d430;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.88,0.04,0.36,1.19), background 0.18s;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 26px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
  background: #181c20f7;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #00adb5;
  font-size: 2.1rem;
  padding: 0 0 8px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 26px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16em;
  color: #f8f8f8;
  padding: 14px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #00adb54a;
  color: #00f5d4;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    gap: 6px;
  }
}

/* TYPOGRAPHY & HEADINGS */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.1;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: #00adb5;
  margin-bottom: 6px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: #00adb5;
}
p, ul li, ol li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #f8f8f8;
  margin-bottom: 8px;
  line-height: 1.7;
}
h2, h3, h4, h5, h6 { color: #00adb5; }
strong { color: var(--color-secondary); font-weight: 600; }
blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #181c20;
  line-height: 1.55;
  background: #e7fafc;
  padding: 18px 18px 18px 30px;
  border-left: 4px solid #00adb5;
  border-radius: 7px;
  margin-bottom: 10px;
}
ol, ul {
  margin-left: 0;
  padding-left: 0;
}

/* FEATURES & GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid li {
  flex: 1 1 200px;
  background: var(--color-card-bg);
  border-radius: 14px;
  padding: 28px 18px 20px 18px;
  box-shadow: 0 2px 10px 0 #00adb522;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  min-width: 180px;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.15s;
}
.feature-grid li img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #00adb577);
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 4px 24px 3px #00f5d44a, 0 1px 0 #00adb5;
  border-color: #00f5d4;
  transform: translateY(-2px) scale(1.025);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.service-list li {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: var(--color-card-bg);
  border-radius: 12px;
  padding: 26px 16px 22px 16px;
  box-shadow: 0 1px 8px 0 #00adb523;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.16s;
}
.service-list li img {
  width: 38px; height: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 6px #00adb540);
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 4px 18px 1px #00adb532, 0 1px 0 #00adb5;
  transform: scale(1.02) translateY(-2px);
}

.benefit-points {
  margin-top: 16px;
  margin-bottom: 6px;
}
.benefit-points li::before {
  content: '\2714\0020';
  color: #00adb5;
  margin-right: 8px;
}

/* CASE STUDY GRID (projekte.html) */
.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.case-study-grid > div {
  flex: 1 1 280px;
  background: var(--color-card-bg);
  border-radius: 12px;
  padding: 28px 16px;
  box-shadow: 0 2px 12px 0 #00adb525;
  margin-bottom: 20px;
  min-width: 210px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.case-study-grid > div:hover {
  box-shadow: 0 6px 26px 2px #00f5d43a, 0 1px 0 #00adb5;
  transform: scale(1.025) translateY(-1px);
}

/* CTA SECTION */
.cta {
  background: linear-gradient(90deg, #181c20 70%, #222831 100%);
  border-radius: 15px;
  box-shadow: 0 3px 18px 0 #00adb523;
  margin-bottom: 40px;
  padding: 42px 20px;
}
.cta h2 {
  color: #fff;
}

/* ABOUT-COMPANY, PRIVACY POLICY, LEGAL etc. */
.about-company, .privacy-policy, .gdpr-info, .cookie-policy, .terms {
  background: #202430;
  border-radius: 16px;
  box-shadow: 0 4px 36px -4px #00adb510;
  margin-bottom: 48px;
  padding: 40px 22px 32px 22px;
}

/* SHOWROOM contact & features */
.showroom-features ul li::before {
  content: '•';
  color: #00adb5;
  font-size: 1.1em;
  margin-right: 7px;
}

.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-info ul li img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}

/* FOOTER */
footer {
  background: #21243b;
  padding: 38px 0 10px 0;
  border-top: 2px solid #00adb533;
  box-shadow: 0 -2px 24px #00adb509;
  color: #f8f8f8;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.footer-nav a {
  color: #00adb5;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 6px 6px;
  border-radius: 5px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus { background: #00adb533; color: #fff; }
.footer-contact img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}
.footer-contact address { color: #f8f8f8; font-size: 1em; }
.footer-contact a { color: #00adb5; word-break: break-all; }
.footer-contact a:hover, .footer-contact a:focus { color: #00f5d4; }

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .feature-grid, .service-list, .case-study-grid, .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .section, .about-company, .privacy-policy, .gdpr-info, .cookie-policy, .terms {
    padding: 22px 7px 22px 7px;
    margin-bottom: 37px;
  }
  .content-wrapper, .feature-grid, .service-list, .case-study-grid {
    gap: 18px;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 36px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 550px) {
  .hero h1, h1, .h1 {
    font-size: 1.44rem;
  }
  h2, .h2 { font-size: 1.18rem; }
}

/* GENERAL UTILITIES */
.text-center { text-align: center; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* BUTTONS */
button, .button {
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s, transform 0.13s;
  border-radius: 6px;
  padding: 0.56em 1.32em;
  font-size: 1em;
  background: var(--color-secondary);
  color: #181c20;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  margin-right: 9px;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #00f5d4;
  color: #181c20;
  box-shadow: 0 2px 12px #00adb53a;
  transform: scale(1.04) translateY(-1.5px);
}
.button-secondary {
  background: transparent;
  color: #00adb5;
  border: 1.7px solid #00adb5;
}
.button-secondary:hover {
  background: #00adb525;
  color: #fff;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #181c20e6;
  color: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 18px 18px 18px;
  box-shadow: 0 -4px 22px #00adb522;
  z-index: 10999;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.01em;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.23s, transform 0.29s;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(130%);
}
.cookie-banner .cookie-banner-message {
  flex: 1 1 220px;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner button, .cookie-banner .button {
  font-size: 1em;
  padding: 6px 22px;
  border-radius: 6px;
}
.cookie-banner .button-accept {
  background: linear-gradient(87deg, #00adb5 67%, #00f5d4 100%);
  color: #0a2222;
}
.cookie-banner .button-accept:hover { background: linear-gradient(97deg, #00f5d4 20%, #00adb5 90%); }
.cookie-banner .button-decline { background: transparent; color: #fff; border: 1.5px solid #00adb5; }
.cookie-banner .button-decline:hover { background: #00adb526; color: #fff; }
.cookie-banner .button-settings { background: none; color: #00adb5; border: none; }
.cookie-banner .button-settings:hover { color: #00f5d4; text-decoration: underline; }

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #181c20f7;
  z-index: 11030;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.22s, visibility 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal {
  background: #21243b;
  color: #f8f8f8;
  border-radius: 14px;
  padding: 38px 22px 30px 22px;
  min-width: 288px;
  max-width: 98vw;
  width: 370px;
  box-shadow: 0 6px 32px #00adb546;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cookie-modal h2 {
  color: #00adb5;
  font-size: 1.24em;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-family: var(--font-body);
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f8f8f8;
}
.cookie-modal label .toggle {
  width: 40px;
  height: 22px;
  background: #181c20;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  border: 1px solid #00adb5;
  margin-right: 7px;
}
.cookie-modal label .toggle input {
  display: none;
}
.cookie-modal label .toggle::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #00adb5;
  box-shadow: 0 0 6px #00f5d466;
  transition: left 0.18s;
}
.cookie-modal label .toggle input:checked + span::after {
  left: 20px;
  background: #00f5d4;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.cookie-modal .button {
  font-size: 1em;
  border-radius: 5px;
  padding: 6px 18px;
}

/* ANIMATIONS */
.mobile-menu,
.cookie-modal-overlay,
.cookie-banner {
  will-change: transform, opacity;
}

/* MICRO INTERACTIONS */
.card, .feature-grid li, .service-list li, .testimonial-card, .case-study-grid > div {
  transition: box-shadow 0.23s, transform 0.21s;
}
.cta-primary, .cta-secondary, .button, .cookie-banner button, .cookie-modal .button {
  transition: background 0.22s, color 0.23s, box-shadow 0.18s, transform 0.18s;
}

/* MINIMAL SCROLLBAR */
body::-webkit-scrollbar {
  width: 8px;
  background: #21243b;
}
body::-webkit-scrollbar-thumb {
  background: #00adb5;
  border-radius: 6px;
}

/* FORM ELEMENTS (future proofing) */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 7px;
  background: #232934;
  color: #f8f8f8;
  border: 1.5px solid #00adb522;
  font-family: var(--font-body);
  font-size: 1.1em;
  margin-bottom: 15px;
  transition: border-color 0.19s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #00adb5;
}

/* Z-INDEX LAYERS */
header { z-index: 400; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 10999; }
.cookie-modal-overlay { z-index: 11030; }

/* SPACING/ALIGNMENT (MANDATORY) */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* PREVENT OVERLAPPING */
.feature-grid li, .service-list li, .testimonial-card, .case-study-grid > div, .card {
  margin-bottom: 20px;
}

/* DARK TEXT ON LIGHT SECTIONS FOR TESTIMONIALS / REVIEW AREAS */
.testimonials .testimonial-card {
  background: #f8f8f8;
  color: #222831;
  border: 1.5px solid #00adb525;
}
blockquote { color: #181c20; }

/* THANK YOU PAGE */
.thank-you .cta-primary { margin-top: 1.5em; }

/* LEGAL & STATIC CONTENT ALIGNMENT */
.privacy-policy ul, .gdpr-info ul, .cookie-policy ul, .terms ul {
  margin-bottom: 14px;
}

/* END CSS */
