/* ======== Allgemein ======== */
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --black: #111;
  --white: #fff;
  --gold: #cea83b;
  --accent: #8b1926;
  --radius: 2.2rem;
  --nav-font-size: 0.9rem;
  font-family: 'montserrat', 'Inter', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: 'montserrat', 'Inter', Arial, sans-serif !important;
  margin: 0;
  padding: 0;
}
a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: var(--accent);
}

/* Globales Box-Sizing für alles */
*, *::before, *::after {
  box-sizing: border-box !important;
}



/* ======== Top Bar ======== */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  width: 100%;
}
.top-bar-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
}
.top-bar a { color: var(--white); }

.top-bar-social img, .top-bar-lang img {
  width: 22px; height: 22px; border-radius: 50%; margin: 0 0.25rem;
  vertical-align: middle;
}
/* NAVIGATION sticky fix für ALLE Seiten */
.main-nav {
  width: 100%;
  height: 64px;
  left: 0;
  right: 0;
  position: sticky;
  top: 0;
  z-index: 1002;
  background: #fff;
  box-shadow: 0 2px 24px #0001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  padding: 0.8rem 32px 0.8rem 32px; /* Feste px statt Prozent/VW! */
  box-sizing: border-box; /* <-- Wichtig! */
}

.nav-logo {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  font-size: 1rem;
  margin-right: 1.2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-links {
  display: flex;
  gap: 2.7rem;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}


.nav-links a.active {
  background-color: rgba(0, 0, 0, 0.06); /* dezentes Highlight */
  font-weight: 600;
  color: #000;
}

.nav-links a:focus {
  background: #111;
  color: #fff;
}

#header-logo {
  height: 128px;     /* oder 72px oder 80px – je nachdem wie groß du es willst */
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
}


.hamburger {
  display: none; /* Default */
}
.mobile-menu {
  display: none; /* default */
}

.mobile-menu.open {
  display: block; /* nur wenn geöffnet */
}


@media (max-width: 1000px) {
  .top-bar {
    background: var(--black);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.4rem 0;
    width: 100%;
  }

  .top-bar-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Links ausrichten wie TCG */
    gap: 1.3rem;
    padding: 0 32px; /* Anpassung für gleichmäßigen Abstand */
  }

  .top-bar a {
    color: var(--white);
  }

  .top-bar-social img, .top-bar-lang img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin: 0 0.25rem;
    vertical-align: middle;
  }

  .main-nav {
    position: sticky;
    top: 0;
    left: 0; right: 0;
    width: 100vw;
    height: 64px;
    background: #fff;
    box-shadow: 0 2px 24px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;  /* WICHTIG! */
    padding: 0;
  }
  .nav-logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    z-index: 1003;
  }

  .nav-toggle {
    display: none; /* Wird durch .hamburger ersetzt */
  }

  .nav-links {
    display: none; /* Desktop-Links ausblenden */
  }


  .hamburger {
    display: block;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 2002;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }

  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { bottom: 0; }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #222;
    z-index: 1999;
    padding: 0;
    overflow-y: auto;
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 38px 0 34px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.45em;
  }

    .mobile-menu.open {
    display: block;
    color:#000
  }
  .mobile-menu ul li a {
    color: #fff;
    font-size: 1.13em;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    text-decoration: none;
    padding: 0.22em 0 0.22em 24px;
    letter-spacing: 0.03em;
    border: none;
    background: none;
    border-radius: 0;
    transition: color 0.14s;
    display: block;
    position: relative;
  }

  .mobile-menu ul li a.active,
  .mobile-menu ul li a:active {
    color: #8b1926;
  }

  .mobile-menu ul li a.active::after {
    content: "";
    display: block;
    height: 2px;
    width: 32px;
    background: #000;
    margin-top: 6px;
    border-radius: 2px;
    transition: background 0.18s;
  }



  /* Responsive: Schrift noch etwas kleiner ab Handy */
  @media (max-width: 480px) {
    .mobile-menu ul li a {
      font-size: 1.02em;
    }
  }

  .mobile-menu.open {
    display: block; /* Nur wenn geöffnet */
  }
}


/* ======== Hero Section ======== */
/* Full-Width-Fix für Hero/Startseite – override globale Puffer */
.page-section {
  position: relative;
  min-height: 60vh;
  height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.page-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-position: center; background-size: cover;
  z-index: 1;
  filter: brightness(0.8);
}
.page-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg,rgba(0,0,0,0.42) 0%,rgba(0,0,0,0.35) 100%);
  z-index: 2;
}
.page-content {
  position: relative; z-index: 3;
  text-align: center;
  color: var(--white);
  width: 100%;
}
.page-label {
  font-size: 1.6rem; letter-spacing: 0.16em; margin-bottom: 1.3rem;
  font-weight: 600; text-transform: uppercase; color: var(--white);
}
.page-content h1 {
  font-size: 7vw; font-weight: 900; letter-spacing: 0.09em;
  margin-bottom: 1.1rem; margin-top: 0;
}
.page-sub {
  font-size: 2.4vw; margin-top: 0.6rem;
  letter-spacing: 0.07em; font-weight: 400; color: #eee;
}
@media (max-width: 700px) {
  .page-content h1 { font-size: 2.5rem;}
  .page-sub { font-size: 1rem;}
}

/* ======== Sections & Titles ======== */
section {
  padding: 4rem 0 3.3rem 0;
}
.section-title {
  font-size: 2.7rem;
  text-align: center;
  font-weight: 900;
  margin: 4.2rem 0 2.4rem 0;
  letter-spacing: 0.07em;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.2rem;
}

.main-dienstleistungen-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 5rem;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  max-width: 950px;
}

.main-dienst-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2.2rem;
  padding: 3.2rem 1.3rem 2.1rem 1.3rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 22px #000;
  transition: transform .14s, box-shadow .16s;
  min-width: 240px;
  max-width: 400px;
}
.main-dienst-card:hover {
  transform: translateY(-7px) scale(1.035);
  box-shadow: 0 8px 34px #000;
}
.dienst-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 0;
}
.dienst-title {
  font-size: 1.48rem;
  font-weight: 700;
  color: #181818;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}


.usp-section {
  padding: 6rem 0 4rem 0;
  background: #fff;
  width: 100vw;
}
.usp-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
  max-width: 1150px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.usp-circle-block {
  position: relative;
  width: 330px;
  height: 330px;
  min-width: 250px;
  min-height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-center {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 38px #000;
  width: 152px;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 89px;
  left: 89px;
  z-index: 2;
  border: 2.5px solid #eee;
}
.usp-center-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #181818;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.usp-icon {
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #2222;
  box-shadow: 0 2px 16px #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #181818;
  font-weight: 600;
  border: 1.7px solid #fff;
  text-align: center;
}
.usp-icon span {
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 0.3rem;
  color: #181818;
  display: block;
  letter-spacing: 0.03em;
}

/* Positioniere die Icons kreisförmig um die Mitte */
.usp-1 { top: 0; left: 50%; transform: translate(-50%, 0);}
.usp-2 { top: 36px; right: 0;}
.usp-3 { top: 150px; right: 0;}
.usp-4 { bottom: 0; left: 50%; transform: translate(-50%, 0);}
.usp-5 { top: 150px; left: 0;}
.usp-6 { top: 36px; left: 0;}

.usp-info-block {
  min-width: 310px;
  max-width: 410px;
  text-align: left;
  margin: 0 1.5rem;
}
.usp-info-block h3 {
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  font-weight: 800;
}
.usp-info-block p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #222;
  line-height: 1.6;
}
.usp-info-block ul {
  list-style: disc inside;
  color: #181818;
  margin-left: 0.7rem;
  font-size: 1.08rem;
  font-weight: 500;
}
.usp-info-block li {
  margin-bottom: 0.3rem;
}

body.faq-bg .faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0 2rem 0;
}

body.faq-bg .faq-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 2.7rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.faq-header-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.3rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px #0001;
}

body.faq-bg .faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

body.faq-bg .faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px #0001;
  transition: box-shadow 0.2s;
  padding: 0.2rem 2.1rem;
  border-bottom: none;
  overflow: hidden;
  position: relative;
}

body.faq-bg .faq-item.open {
  box-shadow: 0 8px 36px #0002;
}

body.faq-bg .faq-q {
  font-weight: 700;
  font-size: 1.19rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.3rem;
  min-height: 64px;
  padding: 1.2rem 0;
  color: var(--black);
  user-select: none;
}

.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 1rem;
  box-shadow: 0 1px 6px #0001;
  background: #2222;
  object-fit: cover;
}

body.faq-bg .arrow {
  margin-left: auto;
  font-size: 2.3rem;
  color: var(--accent);
  transition: transform 0.3s;
  font-weight: 900;
}

body.faq-bg .faq-a {
  font-size: 1.05rem;
  color: #222;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.86,0,.07,1), opacity 0.25s;
  opacity: 0;
  padding-left: 3.5rem;
  padding-bottom: 0;
  line-height: 1.7;
}

body.faq-bg .faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 0.6rem;
  opacity: 1;
  padding-bottom: 1.5rem;
}

body.faq-bg .faq-item .arrow { transition: transform 0.3s;}
body.faq-bg .faq-item.open .arrow { transform: rotate(90deg); }


/* 1) Center-Container */
.faq-accordion {
  max-width: 800px;      /* oder gewünschte Breite */
  margin: 0 auto;        /* zentriert horizontal */
  padding: 0 1rem;       /* etwas Innenabstand damit's nicht an den Rändern klebt */
}

/* 2) FAQ-Liste als Column */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;             /* Abstand zwischen den Items */
}

/* 3) FAQ-Items gleich breit */
.faq-item {
  width: 100%;           /* füllt den Container (max-width oben) */
  border-radius: .75rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  overflow: hidden;
}

/* Optional: responsive Anpassung für kleine Screens */

@media (max-width: 450px) {
  .page-section {
    min-height: 40vh;
    height: 60vh;
  }
  .page-label {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
  }
  .page-content h1 {
    font-size: 2.5rem;
    letter-spacing: 0.07em;
    margin-bottom: 0.8rem;
  }
  .page-sub {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
  section {
    padding: 2rem 0 1.8rem 0;
  }
  .section-title {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem 0;
    letter-spacing: 0.05em;
  }
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  .main-dienstleistungen-grid-4 {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  .main-dienst-card {
    padding: 2rem 1rem 1.5rem 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 11px #0001;
    min-width: auto;
    max-width: 100%;
  }
  .main-dienst-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 4px 17px #0002;
  }
  .dienst-icon {
    width: 60px;
    height: 60px;
  }
  .dienst-title {
    font-size: 1.3rem;
  }
  .usp-section {
    padding: 3rem 0 2rem 0;
  }
  .usp-inner {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .usp-circle-block {
    width: 250px;
    height: 250px;
    min-width: 200px;
    min-height: 200px;
  }
  .usp-center {
    width: 120px;
    height: 120px;
    top: 65px;
    left: 65px;
  }
  .usp-center-title {
    font-size: 1.2rem;
  }
  .usp-icon {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
  .usp-icon span {
    font-size: 0.85rem;
    margin-top: 0.2rem;
  }
  .usp-1 { top: 0; left: 50%; transform: translate(-50%, 0);}
  .usp-2 { top: 28px; right: 0;}
  .usp-3 { top: 115px; right: 0;}
  .usp-4 { bottom: 0; left: 50%; transform: translate(-50%, 0);}
  .usp-5 { top: 115px; left: 0;}
  .usp-6 { top: 28px; left: 0;}
  .usp-info-block {
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  .usp-info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .usp-info-block p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .usp-info-block ul {
    margin-left: 0;
    text-align: left;
    font-size: 1rem;
  }
  .usp-info-block li {
    margin-bottom: 0.2rem;
  }
  body.faq-bg .faq-section {
    padding: 2rem 0 1rem 0;
    max-width: 100%;
  }
  body.faq-bg .faq-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    gap: 0.4rem;
  }
  .faq-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.8rem;
  }
  body.faq-bg .faq-list {
    gap: 1rem;
  }
  body.faq-bg .faq-item {
    border-radius: 0.8rem;
    box-shadow: 0 1px 9px #0001;
    padding: 0.1rem 1.2rem;
  }
  body.faq-bg .faq-item.open {
    box-shadow: 0 4px 18px #0002;
  }
  body.faq-bg .faq-q {
    font-size: 1.05rem;
    gap: 1rem;
    min-height: 50px;
    padding: 0.8rem 0;
  }
  .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 0.8rem;
  }
  body.faq-bg .arrow {
    font-size: 1.8rem;
  }
  body.faq-bg .faq-a {
    font-size: 0.95rem;
    padding-left: 2.5rem;
  }
  body.faq-bg .faq-item.open .faq-a {
    max-height: 300px;
    margin-top: 0.4rem;
    padding-bottom: 1rem;
  }
  .faq-accordion {
    max-width: 100%;
    padding: 0 1rem;
  }
  .faq-list {
    gap: 0.8rem;
  }
  .faq-item {
    border-radius: 0.6rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
  }
}

@media (min-width: 451px) and (max-width: 836px) {
  .page-section {
    min-height: 50vh;
    height: 70vh;
  }
  .page-label {
    font-size: 1.4rem;
    letter-spacing: 0.14em;
    margin-bottom: 1.1rem;
  }
  .page-content h1 {
    font-size: 4vw;
    letter-spacing: 0.08em;
    margin-bottom: 0.9rem;
  }
  .page-sub {
    font-size: 1.5vw;
    letter-spacing: 0.06em;
  }
  section {
    padding: 3rem 0 2.5rem 0;
  }
  .section-title {
    font-size: 2.3rem;
    margin: 3rem 0 1.8rem 0;
    letter-spacing: 0.06em;
  }
  .container {
    padding: 0 1.5rem;
    max-width: 100%;
  }
  .main-dienstleistungen-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 100%;
  }
  .main-dienst-card {
    padding: 2.5rem 1.1rem 1.8rem 1.1rem;
    border-radius: 1.8rem;
    box-shadow: 0 1.5px 16px #0001;
    min-width: auto;
    max-width: 100%;
  }
  .main-dienst-card:hover {
    transform: translateY(-5px) scale(1.025);
    box-shadow: 0 6px 25px #0002;
  }
  .dienst-icon {
    width: 70px;
    height: 70px;
  }
  .dienst-title {
    font-size: 1.4rem;
  }
  .usp-section {
    padding: 4rem 0 3rem 0;
  }
  .usp-inner {
    flex-direction: column;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .usp-circle-block {
    width: 280px;
    height: 280px;
    min-width: 220px;
    min-height: 220px;
  }
  .usp-center {
    width: 135px;
    height: 135px;
    top: 72px;
    left: 72px;
  }
  .usp-center-title {
    font-size: 1.3rem;
  }
  .usp-icon {
    width: 88px;
    height: 88px;
    font-size: 1.9rem;
  }
  .usp-icon span {
    font-size: 0.88rem;
    margin-top: 0.25rem;
  }
  .usp-1 { top: 0; left: 50%; transform: translate(-50%, 0);}
  .usp-2 { top: 32px; right: 0;}
  .usp-3 { top: 130px; right: 0;}
  .usp-4 { bottom: 0; left: 50%; transform: translate(-50%, 0);}
  .usp-5 { top: 130px; left: 0;}
  .usp-6 { top: 32px; left: 0;}
  .usp-info-block {
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  .usp-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
  }
  .usp-info-block p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
  }
  .usp-info-block ul {
    margin-left: 0;
    text-align: left;
    font-size: 1.02rem;
  }
  .usp-info-block li {
    margin-bottom: 0.25rem;
  }
  body.faq-bg .faq-section {
    padding: 3rem 0 1.5rem 0;
    max-width: 90%;
  }
  body.faq-bg .faq-title {
    font-size: 2.3rem;
    margin-bottom: 2.3rem;
    gap: 0.5rem;
  }
  .faq-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
  }
  body.faq-bg .faq-list {
    gap: 1.2rem;
  }
  body.faq-bg .faq-item {
    border-radius: 1rem;
    box-shadow: 0 1.5px 12px #0001;
    padding: 0.15rem 1.5rem;
  }
  body.faq-bg .faq-item.open {
    box-shadow: 0 6px 24px #0002;
  }
  body.faq-bg .faq-q {
    font-size: 1.1rem;
    gap: 1.1rem;
    min-height: 56px;
    padding: 1rem 0;
  }
  .faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 0.9rem;
  }
  body.faq-bg .arrow {
    font-size: 2rem;
  }
  body.faq-bg .faq-a {
    font-size: 1rem;
    padding-left: 3rem;
  }
  body.faq-bg .faq-item.open .faq-a {
    max-height: 250px;
    margin-top: 0.5rem;
    padding-bottom: 1.2rem;
  }
  .faq-accordion {
    max-width: 90%;
    padding: 0 1.5rem;
  }
  .faq-list {
    gap: 0.9rem;
  }
  .faq-item {
    border-radius: 0.7rem;
    box-shadow: 0 1.5px 6px rgba(0,0,0,.05);
  }
}

@media (min-width: 837px) and (max-width: 1140px) {
  .page-section {
    min-height: 55vh;
    height: 78vh;
  }
  .page-label {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
  }
  .page-content h1 {
    font-size: 6vw;
    letter-spacing: 0.085em;
    margin-bottom: 1rem;
  }
  .page-sub {
    font-size: 2vw;
    letter-spacing: 0.065em;
  }
  section {
    padding: 3.5rem 0 3rem 0;
  }
  .section-title {
    font-size: 2.5rem;
    margin: 3.8rem 0 2.1rem 0;
    letter-spacing: 0.065em;
  }
  .container {
    padding: 0 2rem;
    max-width: 1000px;
  }
  .main-dienstleistungen-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 800px;
  }
  .main-dienst-card {
    padding: 2.8rem 1.2rem 1.9rem 1.2rem;
    border-radius: 1.8rem;
    box-shadow: 0 1.8px 18px #0001;
    min-width: 200px;
    max-width: 350px;
  }
  .main-dienst-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 7px 28px #0002;
  }
  .dienst-icon {
    width: 75px;
    height: 75px;
  }
  .dienst-title {
    font-size: 1.42rem;
  }
  .usp-section {
    padding: 5rem 0 3.5rem 0;
  }
  .usp-inner {
    gap: 4vw;
    max-width: 1000px;
    flex-wrap: nowrap;
  }
  .usp-circle-block {
    width: 300px;
    height: 300px;
    min-width: 230px;
    min-height: 230px;
  }
  .usp-center {
    width: 140px;
    height: 140px;
    top: 80px;
    left: 80px;
  }
  .usp-center-title {
    font-size: 1.4rem;
  }
  .usp-icon {
    width: 90px;
    height: 90px;
    font-size: 2rem;
  }
  .usp-icon span {
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
  .usp-1 { top: 0; left: 50%; transform: translate(-50%, 0);}
  .usp-2 { top: 32px; right: 0;}
  .usp-3 { top: 135px; right: 0;}
  .usp-4 { bottom: 0; left: 50%; transform: translate(-50%, 0);}
  .usp-5 { top: 135px; left: 0;}
  .usp-6 { top: 32px; left: 0;}
  .usp-info-block {
    min-width: 280px;
    max-width: 380px;
    margin: 0 1rem;
  }
  .usp-info-block h3 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }
  .usp-info-block p {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
  }
  .usp-info-block ul {
    font-size: 1.05rem;
  }
  .usp-info-block li {
    margin-bottom: 0.25rem;
  }
  body.faq-bg .faq-section {
    padding: 3.5rem 0 1.8rem 0;
    max-width: 700px;
  }
  body.faq-bg .faq-title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    gap: 0.55rem;
  }
  .faq-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 1.1rem;
  }
  body.faq-bg .faq-list {
    gap: 1.3rem;
  }
  body.faq-bg .faq-item {
    border-radius: 1.1rem;
    box-shadow: 0 1.8px 15px #0001;
    padding: 0.18rem 1.8rem;
  }
  body.faq-bg .faq-item.open {
    box-shadow: 0 7px 30px #0002;
  }
  body.faq-bg .faq-q {
    font-size: 1.15rem;
    gap: 1.2rem;
    min-height: 60px;
    padding: 1.1rem 0;
  }
  .faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.95rem;
  }
  body.faq-bg .arrow {
    font-size: 2.1rem;
  }
  body.faq-bg .faq-a {
    font-size: 1.02rem;
    padding-left: 3.2rem;
  }
  body.faq-bg .faq-item.open .faq-a {
    max-height: 220px;
    margin-top: 0.55rem;
    padding-bottom: 1.3rem;
  }
  .faq-accordion {
    max-width: 700px;
    padding: 0 2rem;
  }
  .faq-list {
    gap: 0.95rem;
  }
  .faq-item {
    border-radius: 0.7rem;
    box-shadow: 0 1.8px 7px rgba(0,0,0,.05);
  }
}



/* ---------- Nur für Dienstleistungsseite ---------- */
body.dienstleistungen-bg {
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* --- HERO --- */
body.dienstleistungen-bg .dienstleistungen-hero-section {
  background: linear-gradient(120deg, #f7fafc 0%, #f3f7fb 100%);
  padding: 6rem 0 3rem 0;
  text-align: center;
}

body.dienstleistungen-bg .dienstleistungen-hero-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.3rem;
  letter-spacing: 0.05em;
}

body.dienstleistungen-bg .dienstleistungen-hero-section p {
  font-size: 1.2rem;
  color: #222;
  max-width: 700px;
  margin: 0 auto;
}

/* Zitat-Banner über volle Breite */
.zitat-section {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #111;
  color: #fff;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  text-align: center;
}
.zitat-section blockquote {
  margin: 0;
  font-size: 1.3rem;
  font-style: italic;
}
.zitat-section cite {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.8;
  font-style: normal;
}

.re.referenz-logos-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

.referenz-logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 1rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  min-width: 140px;
  max-width: 170px;
  padding: 1rem;
  margin: 0 !important; /* Keine extra Margin! */
}

.logo-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  filter: grayscale(0.15);
  transition: transform 0.2s, filter 0.2s;
}
.logo-card img:hover {
  filter: none;
  transform: scale(1.06);
}
.logo-card span {
  display: block;
  text-align: center;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #444;
  font-size: 1.05rem;
}


/*mobile Anpassungen für Referenz-Logos */
@media (max-width: 450px) {
  body.dienstleistungen-bg .dienstleistungen-hero-section {
    padding: 3rem 1rem 2rem 1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }
  body.dienstleistungen-bg .dienstleistungen-hero-section p {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  .zitat-section {
    padding: 1.5rem 1rem;
  }
  .zitat-section blockquote {
    font-size: 1.1rem;
  }
  .zitat-section cite {
    font-size: 0.9rem;
    margin-top: 0.8rem;
  }
  .referenz-logos-section {
    padding: 2rem 1rem;
  }
  .referenz-logos-wrapper {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 100%;
  }
  .logo-card {
    min-width: 100%;
    max-width: 100%;
    padding: 0.8rem;
    border-radius: 0.8rem;
  }
  .logo-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.4rem;
  }
  .logo-card img:hover {
    transform: scale(1.04);
  }
  .logo-card span {
    font-size: 0.95rem;
    margin-top: 0.4rem;
  }
}

@media (min-width: 451px) and (max-width: 836px) {
  body.dienstleistungen-bg .dienstleistungen-hero-section {
    padding: 4rem 2rem 2.5rem 2rem;
  }
  body.dienstleistungen-bg .dienstleistungen-hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.04em;
  }
  body.dienstleistungen-bg .dienstleistungen-hero-section p {
    font-size: 1.1rem;
    max-width: 90%;
    padding: 0 2rem;
  }
  .zitat-section {
    padding: 2rem 1.5rem;
  }
  .zitat-section blockquote {
    font-size: 1.2rem;
  }
  .zitat-section cite {
    font-size: 0.95rem;
    margin-top: 0.9rem;
  }
  .referenz-logos-section {
    padding: 3rem 2rem;
  }
  .referenz-logos-wrapper {
    flex-wrap: wrap;
    gap: 1.8rem;
    padding: 0 2rem;
    max-width: 100%;
  }
  .logo-card {
    min-width: 120px;
    max-width: 150px;
    padding: 0.9rem;
    border-radius: 0.9rem;
  }
  .logo-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 0.45rem;
  }
  .logo-card img:hover {
    transform: scale(1.05);
  }
  .logo-card span {
    font-size: 1rem;
    margin-top: 0.45rem;
  }
}

@media (min-width: 837px) and (max-width: 1140px) {
  body.dienstleistungen-bg .dienstleistungen-hero-section {
    padding: 5rem 3rem 2.8rem 3rem;
  }
  body.dienstleistungen-bg .dienstleistungen-hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.045em;
  }
  body.dienstleistungen-bg .dienstleistungen-hero-section p {
    font-size: 1.15rem;
    max-width: 650px;
    padding: 0 3rem;
  }
  .zitat-section {
    padding: 2.2rem 2rem;
  }
  .zitat-section blockquote {
    font-size: 1.25rem;
  }
  .zitat-section cite {
    font-size: 0.98rem;
    margin-top: 0.95rem;
  }
  .referenz-logos-section {
    padding: 3.2rem 3rem;
  }
  .referenz-logos-wrapper {
    gap: 1.8rem;
    max-width: 1100px;
    padding: 0 3rem;
  }
  .logo-card {
    min-width: 130px;
    max-width: 160px;
    padding: 0.95rem;
    border-radius: 0.95rem;
  }
  .logo-card img {
    width: 110px;
    height: 110px;
    margin-bottom: 0.45rem;
  }
  .logo-card img:hover {
    transform: scale(1.05);
  }
  .logo-card span {
    font-size: 1.02rem;
    margin-top: 0.45rem;
  }
}


/* Referenzen im TCG-Stil */
.referenzen-section {
  width: 100vw;
  background: #fafafd;
  padding: 3.5rem 0 4rem 0;
}

.referenzen-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.referenzen-section {
  width: 100vw;
  background: #fafafd;
  padding: 3.5rem 0 4rem 0;
}


.referenz-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px #0001;
  padding: 1.5rem 1.2rem 1.3rem 1.2rem;
  width: 320px;
  min-width: 220px;
  max-width: 330px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .2s, transform .12s;
}
.referenz-card:hover {
  box-shadow: 0 8px 28px #0002;
  transform: translateY(-6px) scale(1.03);
}

.referenz-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 1.1rem;
  margin-bottom: 0.8rem;
  background: #eee;
}

.referenz-quote b {
  font-size: 1.07rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2em;
}
.referenz-quote span {
  font-size: 1.01rem;
  color: #333;
  display: block;
  margin-bottom: 0.6em;
}
.referenz-quote em {
  color: #a7272a;
  font-style: italic;
  font-size: .98rem;
}

/* Responsive: untereinander bei kleiner Breite */
@media (max-width: 450px) {
  .referenzen-section {
    padding: 2rem 1rem 2.5rem 1rem;
  }
  .referenzen-grid {
    flex-wrap: wrap;
    gap: 1.5rem;
    overflow-x: visible;
    padding: 0 1rem;
  }
  .referenz-card {
    border-radius: 1rem;
    box-shadow: 0 2px 10px #0001;
    padding: 1.2rem 1rem 1rem 1rem;
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
  .referenz-card:hover {
    box-shadow: 0 4px 14px #0002;
    transform: translateY(-4px) scale(1.02);
  }
  .referenz-card img {
    width: 48px;
    height: 48px;
    border-radius: 0.8rem;
    margin-bottom: 0.6rem;
  }
  .referenz-quote b {
    font-size: 1rem;
    margin-bottom: 0.15em;
  }
  .referenz-quote span {
    font-size: 0.95rem;
    margin-bottom: 0.5em;
  }
  .referenz-quote em {
    font-size: 0.92rem;
  }
}

@media (min-width: 451px) and (max-width: 836px) {
  .referenzen-section {
    padding: 3rem 1.5rem 3.5rem 1.5rem;
  }
  .referenzen-grid {
    flex-wrap: nowrap;
    gap: 1.8rem;
    overflow-x: auto;
    padding: 0 1.5rem;
  }
  .referenz-card {
    border-radius: 1.1rem;
    box-shadow: 0 3px 15px #0001;
    padding: 1.3rem 1.1rem 1.2rem 1.1rem;
    width: 280px;
    min-width: 200px;
    max-width: 300px;
  }
  .referenz-card:hover {
    box-shadow: 0 6px 20px #0002;
    transform: translateY(-5px) scale(1.025);
  }
  .referenz-card img {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    margin-bottom: 0.7rem;
  }
  .referenz-quote b {
    font-size: 1.03rem;
    margin-bottom: 0.18em;
  }
  .referenz-quote span {
    font-size: 0.98rem;
    margin-bottom: 0.55em;
  }
  .referenz-quote em {
    font-size: 0.95rem;
  }
}

@media (min-width: 837px) and (max-width: 1140px) {
  .referenzen-section {
    padding: 3.2rem 2rem 3.8rem 2rem;
  }
  .referenzen-grid {
    gap: 1.8rem;
    max-width: 1000px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .referenz-card {
    border-radius: 1.1rem;
    box-shadow: 0 3.5px 18px #0001;
    padding: 1.4rem 1.1rem 1.2rem 1.1rem;
    width: 300px;
    min-width: 210px;
    max-width: 310px;
  }
  .referenz-card:hover {
    box-shadow: 0 7px 24px #0002;
    transform: translateY(-5px) scale(1.025);
  }
  .referenz-card img {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
  }
  .referenz-quote b {
    font-size: 1.05rem;
    margin-bottom: 0.18em;
  }
  .referenz-quote span {
    font-size: 0.99rem;
    margin-bottom: 0.55em;
  }
  .referenz-quote em {
    font-size: 0.96rem;
  }
}

/* ====== SCHRITTE MODELL ====== */

body.dienstleistungen-bg .dienstleistungen-schritte-section {
  width: 100vw;
  background: #fafafd;
  padding: 3.2rem 0 3.2rem 0;
  display: flex;
  justify-content: center;
}
body.dienstleistungen-bg .dienstleistungen-schritte-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: nowrap; /* <<< WICHTIG: KEIN UMBRUCH AUF DESKTOP! */
}
body.dienstleistungen-bg .dienstleistungen-schritt {
  background: #fff;
  flex: 1 1 120px;
  min-width: 180px;
  max-width: 200px;
  text-align: center;
  border-radius: 1.7rem;
  box-shadow: 0 3px 20px #0001;
  padding: 1.4rem 1.2rem 1.6rem 1.2rem;
  position: relative;
  transition: box-shadow .18s, transform .13s;
}
body.dienstleistungen-bg .dienstleistungen-schritt:hover {
  box-shadow: 0 8px 32px #0002;
  transform: translateY(-7px) scale(1.03);
}
body.dienstleistungen-bg .dienstleistungen-schritt-number {
  font-size: 3.7rem;
  font-weight: 900;
  color: #111;
  opacity: 0.12;
  position: absolute;
  top: 1.3rem; left: 0; right: 0;
  z-index: 0;
  pointer-events: none;
}
body.dienstleistungen-bg .dienstleistungen-schritt-title {
  font-size: 1.17rem;
  font-weight: 700;
  color: #181818;
  margin-top: 1.9rem;
  z-index: 1;
  position: relative;
  letter-spacing: 0.09em;
}
body.dienstleistungen-bg .dienstleistungen-schritt-desc {
  font-size: 1.01rem;
  color: #444;
  margin-top: 1.1rem;
  position: relative;
  z-index: 1;
  min-height: 55px;
}


/* --- Leistungen-Grid (6 Felder) --- */
body.dienstleistungen-bg .dienstleistungen-leistungen-section {
  padding: 3rem 0 2.5rem 0;
}
body.dienstleistungen-bg .section-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 3.2rem 0 2.2rem 0;
  text-align: center;
  letter-spacing: 0.03em;
}
body.dienstleistungen-bg .dienstleistungen-leistungen-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2.5rem;
  justify-content: center;
  margin-top: 2.2rem;
}
body.dienstleistungen-bg .dienstleistungen-leistung-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 16px #0001;
  padding: 2.6rem 2rem 2rem 2rem;
  text-align: center;
  min-width: 230px;
  max-width: 330px;
  transition: transform 0.16s, box-shadow 0.19s;
}
body.dienstleistungen-bg .dienstleistungen-leistung-card:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 8px 38px #0002;
}
body.dienstleistungen-bg .dienstleistungen-leistung-icon {
  margin-bottom: 1.4rem;
}
body.dienstleistungen-bg .dienstleistungen-leistung-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
body.dienstleistungen-bg .dienstleistungen-leistung-card p {
  color: #555;
  font-size: 1.07rem;
}


/* --- Detailblöcke --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.accordion-item {
  background: #fafafd;
  border-radius: 1.1rem;
  box-shadow: 0 2px 18px #0001;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.accordion-title {
  padding: 1.2rem 1.6rem;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
  color: #8b1926;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.accordion-title::after {
  content: "+";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #8b1926;
  transition: all 0.3s ease;
  font-weight: 900;
}

.accordion-item.active .accordion-title::after {
  content: "–";
}

.accordion-item.active .accordion-title::after {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 1.6rem;
  font-size: 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 240px;
  padding: 1rem 1.6rem;
}

/*responsive*/
@media (max-width: 450px) {
  body.dienstleistungen-bg .dienstleistungen-schritte-section {
    padding: 2rem 1rem 2rem 1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritte-wrapper {
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
    border-radius: 1.2rem;
    padding: 1rem 1rem 1.2rem 1rem;
    box-shadow: 0 2px 10px #0001;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 4px 16px #0002;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-number {
    font-size: 2.8rem;
    top: 1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-title {
    font-size: 1.05rem;
    margin-top: 1.5rem;
    letter-spacing: 0.07em;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-desc {
    font-size: 0.95rem;
    margin-top: 0.8rem;
    min-height: auto;
  }
  body.dienstleistungen-bg .dienstleistungen-leistungen-section {
    padding: 2rem 1rem 1.8rem 1rem;
  }
  body.dienstleistungen-bg .section-title {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
  }
  body.dienstleistungen-bg .dienstleistungen-leistungen-grid-6 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    margin-top: 1.5rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card {
    border-radius: 1.5rem;
    padding: 1.8rem 1.5rem 1.5rem 1.5rem;
    min-width: auto;
    max-width: 100%;
    box-shadow: 0 1px 8px #0001;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 4px 19px #0002;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-icon {
    margin-bottom: 1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card p {
    font-size: 0.98rem;
  }
  .accordion {
    gap: 0.8rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  .accordion-item {
    border-radius: 0.8rem;
    box-shadow: 0 1px 9px #0001;
  }
  .accordion-title {
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }
  .accordion-title::after {
    right: 1.2rem;
    font-size: 1.1rem;
  }
  .accordion-content {
    font-size: 0.95rem;
  }
  .accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0.8rem 1.2rem;
  }
}

@media (min-width: 451px) and (max-width: 836px) {
  body.dienstleistungen-bg .dienstleistungen-schritte-section {
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritte-wrapper {
    flex-wrap: wrap;
    gap: 1.2rem;
    max-width: 100%;
    padding: 0 1.5rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt {
    flex: 1 1 45%;
    min-width: 45%;
    max-width: 48%;
    border-radius: 1.4rem;
    padding: 1.2rem 1.1rem 1.4rem 1.1rem;
    box-shadow: 0 2.5px 15px #0001;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt:hover {
    transform: translateY(-5px) scale(1.025);
    box-shadow: 0 6px 24px #0002;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-number {
    font-size: 3.2rem;
    top: 1.1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-title {
    font-size: 1.1rem;
    margin-top: 1.7rem;
    letter-spacing: 0.08em;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-desc {
    font-size: 0.98rem;
    margin-top: 0.9rem;
    min-height: auto;
  }
  body.dienstleistungen-bg .dienstleistungen-leistungen-section {
    padding: 2.5rem 1.5rem 2rem 1.5rem;
  }
  body.dienstleistungen-bg .section-title {
    font-size: 2rem;
    margin: 2.5rem 0 1.8rem 0;
  }
  body.dienstleistungen-bg .dienstleistungen-leistungen-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1.5rem;
    margin-top: 1.8rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card {
    border-radius: 1.8rem;
    padding: 2.2rem 1.8rem 1.8rem 1.8rem;
    min-width: auto;
    max-width: 100%;
    box-shadow: 0 1.5px 12px #0001;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 28px #0002;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-icon {
    margin-bottom: 1.2rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card h3 {
    font-size: 1.18rem;
    margin-bottom: 0.6rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card p {
    font-size: 1.02rem;
  }
  .accordion {
    gap: 0.9rem;
    max-width: 90%;
    padding: 0 1.5rem;
  }
  .accordion-item {
    border-radius: 1rem;
    box-shadow: 0 1.5px 12px #0001;
  }
  .accordion-title {
    padding: 1.1rem 1.4rem;
    font-size: 1.05rem;
  }
  .accordion-title::after {
    right: 1.4rem;
    font-size: 1.2rem;
  }
  .accordion-content {
    font-size: 0.98rem;
  }
  .accordion-item.active .accordion-content {
    max-height: 260px;
    padding: 0.9rem 1.4rem;
  }
}

@media (min-width: 837px) and (max-width: 1140px) {
  body.dienstleistungen-bg .dienstleistungen-schritte-section {
    padding: 3rem 2rem 3rem 2rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritte-wrapper {
    gap: 1.2rem;
    max-width: 900px;
    flex-wrap: nowrap;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt {
    flex: 1 1 100px;
    min-width: 150px;
    max-width: 180px;
    border-radius: 1.5rem;
    padding: 1.3rem 1.1rem 1.5rem 1.1rem;
    box-shadow: 0 2.5px 18px #0001;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 7px 28px #0002;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-number {
    font-size: 3.4rem;
    top: 1.2rem;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-title {
    font-size: 1.13rem;
    margin-top: 1.8rem;
    letter-spacing: 0.08em;
  }
  body.dienstleistungen-bg .dienstleistungen-schritt-desc {
    font-size: 0.99rem;
    margin-top: 1rem;
    min-height: 50px;
  }
  body.dienstleistungen-bg .dienstleistungen-leistungen-section {
    padding: 2.8rem 2rem 2.3rem 2rem;
  }
  body.dienstleistungen-bg .section-title {
    font-size: 2.1rem;
    margin: 3rem 0 2rem 0;
  }
  body.dienstleistungen-bg .dienstleistungen-leistungen-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card {
    border-radius: 1.8rem;
    padding: 2.4rem 1.8rem 1.8rem 1.8rem;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 1.5px 14px #0001;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 7px 32px #0002;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-icon {
    margin-bottom: 1.3rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
  }
  body.dienstleistungen-bg .dienstleistungen-leistung-card p {
    font-size: 1.04rem;
  }
  .accordion {
    gap: 0.9rem;
    max-width: 650px;
  }
  .accordion-item {
    border-radius: 1rem;
    box-shadow: 0 1.5px 15px #0001;
  }
  .accordion-title {
    padding: 1.1rem 1.5rem;
    font-size: 1.08rem;
  }
  .accordion-title::after {
    right: 1.5rem;
    font-size: 1.25rem;
  }
  .accordion-content {
    font-size: 0.98rem;
  }
  .accordion-item.active .accordion-content {
    max-height: 220px;
    padding: 0.9rem 1.5rem;
  }
}


/* --- Kontaktformular --- */
body.dienstleistungen-bg .dienstleistungen-kontaktform-section {
  background: #fff;
  padding: 5rem 0 6rem 0;
  display: flex;
  justify-content: center;
}

body.dienstleistungen-bg .dienstleistungen-kontaktform {
  background: #fff;
  border-radius: 2.2rem;
  box-shadow: 0 4px 28px #0001;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  padding: 2.8rem 2.1rem 2.1rem 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

body.dienstleistungen-bg .dienstleistungen-kontaktform h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #181818;
}

body.dienstleistungen-bg .kontaktform-row {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

body.dienstleistungen-bg .kontaktform-row input {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

body.dienstleistungen-bg .dienstleistungen-kontaktform input,
body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
  font-size: 1.1rem;
  padding: 1.1rem;
  border: 1.6px solid #eee;
  border-radius: 1.2rem;
  background: #fff;
  outline: none;
  margin-bottom: 0.1rem;
  font-family: inherit;
  transition: border-color 0.14s, background 0.18s;
  box-sizing: border-box;
}

body.dienstleistungen-bg .dienstleistungen-kontaktform input:focus,
body.dienstleistungen-bg .dienstleistungen-kontaktform textarea:focus {
  border-color: #8b1926;
  background: #fff;
}

body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
  resize: vertical;
  min-height: 110px;
  margin-bottom: 1.2rem;
  width: 100%;
}

body.dienstleistungen-bg .dienstleistungen-kontaktform button {
  background: #181818;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 1.7rem;
  padding: 1.1rem 0;
  margin: 1.3rem 0 0.2rem 0;
  box-shadow: 0 1px 10px #0002;
  cursor: pointer;
  transition: background .17s, color .17s;
  width: 100%;
}
body.dienstleistungen-bg .dienstleistungen-kontaktform button:hover {
  background: #8b1926;
}

body.dienstleistungen-bg .kontaktform-whatsapp {
  text-align: center;
  margin-top: 1.3rem;
  font-size: 1.04rem;
}
body.dienstleistungen-bg .kontaktform-whatsapp a {
  color: #181818;
  text-decoration: underline;
  font-weight: 500;
}


body.dienstleistungen-bg .kontakt-form button:hover { background: var(--accent);}
body.dienstleistungen-bg .contact-info { text-align: center; margin-top: 2rem; font-size: 1.04rem;}
body.dienstleistungen-bg .contact-info a { color: var(--black); text-decoration: underline; font-weight: 500; }

/*responsive*/
@media (max-width: 450px) {
  body.dienstleistungen-bg .dienstleistungen-kontaktform-section {
    padding: 3rem 1rem 4rem 1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform {
    border-radius: 1.5rem;
    box-shadow: 0 2px 14px #0001;
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    max-width: 100%;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  body.dienstleistungen-bg .kontaktform-row {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  body.dienstleistungen-bg .kontaktform-row input {
    width: 100%;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform input,
  body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
    font-size: 1rem;
    padding: 0.9rem;
    border: 1.2px solid #eee;
    border-radius: 0.9rem;
    margin-bottom: 0;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
    min-height: 90px;
    margin-bottom: 1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform button {
    font-size: 1.1rem;
    padding: 0.9rem 0;
    margin: 1rem 0 0.1rem 0;
    border-radius: 1.2rem;
  }
  body.dienstleistungen-bg .kontaktform-whatsapp {
    font-size: 0.95rem;
    margin-top: 1rem;
  }
 
  body.dienstleistungen-bg .contact-info {
    font-size: 0.95rem;
    margin-top: 1.5rem;
  }
}

@media (min-width: 451px) and (max-width: 836px) {
  body.dienstleistungen-bg .dienstleistungen-kontaktform-section {
    padding: 4rem 2rem 5rem 2rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform {
    border-radius: 1.8rem;
    box-shadow: 0 3px 20px #0001;
    padding: 2.2rem 1.8rem 1.8rem 1.8rem;
    max-width: 90%;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
  body.dienstleistungen-bg .kontaktform-row {
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.1rem;
  }
  body.dienstleistungen-bg .kontaktform-row input {
    width: 100%;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform input,
  body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
    font-size: 1.05rem;
    padding: 1rem;
    border: 1.4px solid #eee;
    border-radius: 1rem;
    margin-bottom: 0.05rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
    min-height: 100px;
    margin-bottom: 1.1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform button {
    font-size: 1.15rem;
    padding: 1rem 0;
    margin: 1.1rem 0 0.15rem 0;
    border-radius: 1.4rem;
  }
  body.dienstleistungen-bg .kontaktform-whatsapp {
    font-size: 1rem;
    margin-top: 1.1rem;
  }

  body.dienstleistungen-bg .contact-info {
    font-size: 1rem;
    margin-top: 1.8rem;
  }
}

@media (min-width: 837px) and (max-width: 1140px) {
  body.dienstleistungen-bg .dienstleistungen-kontaktform-section {
    padding: 4.5rem 3rem 5.5rem 3rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform {
    border-radius: 2rem;
    box-shadow: 0 3.5px 24px #0001;
    padding: 2.5rem 1.9rem 1.9rem 1.9rem;
    max-width: 600px;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform h2 {
    font-size: 1.9rem;
    margin-bottom: 1.9rem;
  }
  body.dienstleistungen-bg .kontaktform-row {
    gap: 1rem;
    margin-bottom: 1.1rem;
  }
  body.dienstleistungen-bg .kontaktform-row input {
    flex: 1 1 0;
    min-width: 0;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform input,
  body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
    font-size: 1.08rem;
    padding: 1.05rem;
    border: 1.5px solid #eee;
    border-radius: 1.1rem;
    margin-bottom: 0.05rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform textarea {
    min-height: 105px;
    margin-bottom: 1.1rem;
  }
  body.dienstleistungen-bg .dienstleistungen-kontaktform button {
    font-size: 1.18rem;
    padding: 1.05rem 0;
    margin: 1.2rem 0 0.15rem 0;
    border-radius: 1.5rem;
  }
  body.dienstleistungen-bg .kontaktform-whatsapp {
    font-size: 1.02rem;
    margin-top: 1.2rem;
  }
  body.dienstleistungen-bg .contact-info {
    font-size: 1.02rem;
    margin-top: 1.9rem;
  }
}

body.kontakt-bg {
  background: #fff;
  color: #111;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* HERO-Bild */
body.kontakt-bg .kontakt-hero {
  position: relative;
  width: 100vw;
  min-height: 380px;
  max-height: 44vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.kontakt-bg .kontakt-hero-img {
  width: 100vw;
  min-height: 380px;
  object-fit: cover;
  filter: brightness(0.78) blur(0.5px);
  position: relative;
  z-index: 1;
}
body.kontakt-bg .kontakt-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg,rgba(0,0,0,.25) 0%,rgba(0,0,0,.11) 100%);
  z-index: 2;
}
body.kontakt-bg .kontakt-hero-content {
  position: absolute;
  top: 40%; left: 50%; transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 3;
  width: 100vw;
}
body.kontakt-bg .kontakt-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 18px #0006;
}
body.kontakt-bg .kontakt-hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  text-shadow: 0 2px 10px #0004;
}
.kontakt-cta-modern {
  padding: 4rem 0;
  background: #f9f9f9;
}
.kontakt-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
}
.kontakt-left {
  flex: 1 1 300px;
  max-width: 400px;
}
.kontakt-left h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.kontakt-left p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.kontakt-socials a img {
  width: 28px;
  height: 28px;
  margin-right: 0.6rem;
}
.kontakt-right {
  flex: 1 1 400px;
  max-width: 550px;
}
#contactFormModern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contactFormModern input,
#contactFormModern textarea {
  padding: 1rem;
  font-size: 1.05rem;
  border-radius: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  font-family: inherit;
}
#contactFormModern button {
  background: #111;
  color: white;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
#contactFormModern button:hover {
  background: #8b1926;
}

.meet-booking-section {
  background: #fff;
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.meet-booking-section h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}


/* Responsive */
@media (max-width: 450px) {
body.kontakt-bg .kontakt-hero {
min-height: 250px;
max-height: 40vh;
}
body.kontakt-bg .kontakt-hero-img {
min-height: 250px;
}
body.kontakt-bg .kontakt-hero-content {
top: 50%;
padding: 0 1rem;
}
body.kontakt-bg .kontakt-hero-content h1 {
font-size: 2rem;
margin-bottom: 0.8rem;
}
body.kontakt-bg .kontakt-hero-content p {
font-size: 1rem;
}
.kontakt-cta-modern {
padding: 2rem 1rem;
}
.kontakt-container {
flex-direction: column;
padding: 0rem;
  align-items: center;
    text-align: center;
}
.kontakt-left {
max-width: 100%;
text-align: center;
}
.kontakt-left h2 {
font-size: 1.6rem;
}
.kontakt-left p {
font-size: 1rem;
}
.kontakt-socials {
display: flex;
justify-content: center;
}
.kontakt-right {
max-width: 100%;
}
#contactFormModern input,
#contactFormModern textarea {
font-size: 1rem;
padding: 0.8rem;
border-radius: 0.8rem;
}
#contactFormModern button {
padding: 0.8rem;
font-size: 1rem;
border-radius: 0.8rem;
}
.meet-booking-section {
padding: 2rem 1rem;
}
.meet-booking-section h3 {
font-size: 1.4rem;
margin-bottom: 1.5rem;
}

}

@media (min-width: 451px) and (max-width: 836px) {
body.kontakt-bg .kontakt-hero {
min-height: 300px;
max-height: 42vh;
}
body.kontakt-bg .kontakt-hero-img {
min-height: 300px;
}
body.kontakt-bg .kontakt-hero-content {
top: 50%;
padding: 0 2rem;
}
body.kontakt-bg .kontakt-hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
body.kontakt-bg .kontakt-hero-content p {
font-size: 1.1rem;
}
.kontakt-cta-modern {
padding: 3rem 2rem;
}
.kontakt-container {
flex-direction: column;
gap: 2.5rem;
padding: 0 2rem;
}
.kontakt-left {
max-width: 100%;
text-align: center;
}
.kontakt-left h2 {
font-size: 1.8rem;
}
.kontakt-left p {
font-size: 1.05rem;
}
.kontakt-socials {
display: flex;
justify-content: center;
}
.kontakt-right {
max-width: 100%;
}
#contactFormModern input,
#contactFormModern textarea {
font-size: 1.02rem;
padding: 0.9rem;
border-radius: 0.9rem;
}
#contactFormModern button {
padding: 0.9rem;
font-size: 1.05rem;
border-radius: 0.9rem;
}
.meet-booking-section {
padding: 3rem 2rem;
}
.meet-booking-section h3 {
font-size: 1.6rem;
margin-bottom: 1.8rem;
}
}

@media (min-width: 837px) and (max-width: 1140px) {
body.kontakt-bg .kontakt-hero {
min-height: 350px;
max-height: 43vh;
}
body.kontakt-bg .kontakt-hero-img {
min-height: 350px;
}
body.kontakt-bg .kontakt-hero-content {
top: 50%;
padding: 0 3rem;
}
body.kontakt-bg .kontakt-hero-content h1 {
font-size: 2.8rem;
margin-bottom: 1.1rem;
}
body.kontakt-bg .kontakt-hero-content p {
font-size: 1.2rem;
}
.kontakt-cta-modern {
padding: 3.5rem 3rem;
}
.kontakt-container {
gap: 2.5rem;
padding: 0 3rem;
max-width: 1000px;
}
.kontakt-left {
flex: 1 1 250px;
max-width: 350px;
}
.kontakt-left h2 {
font-size: 1.9rem;
}
.kontakt-left p {
font-size: 1.05rem;
}
.kontakt-right {
flex: 1 1 350px;
max-width: 500px;
}
#contactFormModern input,
#contactFormModern textarea {
font-size: 1.03rem;
padding: 0.95rem;
border-radius: 0.95rem;
}
#contactFormModern button {
padding: 0.95rem;
font-size: 1.08rem;
border-radius: 0.95rem;
}
.meet-booking-section {
padding: 3.5rem 3rem;
max-width: 1000px;
}
.meet-booking-section h3 {
font-size: 1.7rem;
margin-bottom: 1.9rem;
}

} 


.foto-hero {
  position: relative;
  height: 56vw;
  min-height: 330px;
  max-height: 430px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foto-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  position: absolute;
  left: 0; top: 0;
}
.foto-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.foto-hero-content h1 {
  font-size: 2.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  font-weight: 900;
}
.foto-hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
}
@media (max-width: 600px) {
  .foto-hero-content h1 { font-size: 2rem; }
  .foto-hero { height: 200px; }
}

.foto-benefits {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
  margin: 3rem auto;
  max-width: 1200px;
}
.foto-benefit {
  flex: 1;
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  text-align: center;
  padding: 1.3rem 1.1rem 1.6rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foto-benefit img {
  width: 85px; height: 85px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.foto-benefit h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.foto-benefit p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .foto-benefits { flex-direction: column; gap: 1.2rem; }
}

.foto-gallery {
  background: #f5f6fa;
  padding: 2.6rem 0;
  text-align: center;
}
.foto-gallery h2 { font-size: 1.6rem; margin-bottom: 2rem; font-weight: 800;}
.foto-gallery-row {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.foto-gallery-row img {
  width: 410px;
  height: 330px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.18s;
  cursor: pointer;
}
.foto-gallery-row img:hover { transform: scale(1.045);}
@media (max-width: 850px) {
  .foto-gallery-row img { width: 45vw; min-width: 140px; height: 80px;}
  .foto-gallery-row { gap: 0.8rem;}
}

.foto-packages {
  max-width: 950px;
  margin: 3rem auto 2.5rem auto;
  text-align: center;
}
.foto-package-row {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  align-items: stretch;
}
.foto-package-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  padding: 2rem 1rem 1.6rem 1rem;
  margin: 0;
  min-width: 180px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #eee;
  transition: border 0.2s, box-shadow 0.2s;
}
.foto-package-card.featured {
  border-color: #8b1926;
  box-shadow: 0 4px 16px rgba(178,92,90,0.13);
}
.foto-package-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #8b1926;
}
.foto-package-card .preis {
  font-size: 1.25rem;
  font-weight: 900;
  color: #191919;
  margin-bottom: 0.8rem;
}
.foto-package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #222;
}
.foto-package-card ul li {
  margin-bottom: 0.5rem;
}
.foto-paket-hinweis {
  color: #888;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .foto-package-row { flex-direction: column; gap: 1rem; }
}

.foto-cta {
  background: #f4ebe4;
  margin: 2.5rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.3rem;
  padding: 2rem 1.5rem;
  border-radius: 1.3rem;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.foto-cta-img {
  width: 140px; height: 140px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}
.foto-cta-content h2 {
  font-size: 1.35rem; font-weight: 700;
  margin-bottom: 1.2rem;
}
.button-black {
  display: inline-block;
  background: #191919;
  color: #fff !important;
  border: none; border-radius: 1.8rem;
  padding: 0.75rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.18s, color 0.18s;
}
.button-black:hover { background: #8b1926; color: #fff !important; }

@media (max-width: 1024px) {
  /* Für 820-1024px: Ähnlich wie Desktop, minimale Anpassungen für Tablets */
  .foto-hero {
    height: 50vw;
    min-height: 300px;
    max-height: 400px;
  }
  .foto-hero-content h1 {
    font-size: 2.6rem;
  }
  .foto-hero-content p {
    font-size: 1.15rem;
  }
  .foto-benefits {
    gap: 1.8rem;
    max-width: 1000px;
    padding: 0 1rem;
  }
  .foto-benefit {
    padding: 1.2rem 1rem 1.4rem 1rem;
  }
  .foto-gallery-row {
    gap: 1.4rem;
  }
  .foto-gallery-row img {
    width: 190px;
    height: 120px;
  }
  .foto-packages {
    max-width: 900px;
  }
  .foto-package-row {
    gap: 1.4rem;
  }
  .foto-package-card {
    padding: 1.8rem 0.9rem 1.4rem 0.9rem;
    max-width: 260px;
  }
  .foto-cta {
    gap: 2rem;
    padding: 1.8rem 1.3rem;
    max-width: 800px;
  }
  .foto-cta-img {
    width: 130px;
    height: 130px;
  }
  .foto-cta-content h2 {
    font-size: 1.3rem;
  }
  .button-black {
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
  }
}

@media (max-width: 820px) {
  /* Für bis 820px: Stärkere Anpassungen, z.B. Stacken wo nötig */
  .foto-hero {
    height: 45vw;
    min-height: 280px;
    max-height: 360px;
  }
  .foto-hero-content h1 {
    font-size: 2.3rem;
  }
  .foto-hero-content p {
    font-size: 1.1rem;
  }
  .foto-benefits {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  .foto-benefit {
    padding: 1.1rem 1rem 1.3rem 1rem;
  }
  .foto-gallery h2 {
    font-size: 1.5rem;
  }
  .foto-gallery-row {
    gap: 1.2rem;
  }
  .foto-gallery-row img {
    width: 170px;
    height: 110px;
  }
  .foto-packages {
    max-width: 700px;
  }
  .foto-package-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .foto-package-card {
    max-width: none;
    padding: 1.6rem 1rem 1.3rem 1rem;
  }
  .foto-cta {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.6rem 1.2rem;
    text-align: center;
  }
  .foto-cta-img {
    width: 120px;
    height: 120px;
  }
  .foto-cta-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .button-black {
    padding: 0.65rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 450px) {
  /* Für kleine Bildschirme bis 450px: Weitere Verkleinerungen und Simplifizierung */
  .foto-hero {
    height: 40vw;
    min-height: 220px;
    max-height: 300px;
  }
  .foto-hero-content h1 {
    font-size: 1.8rem;
  }
  .foto-hero-content p {
    font-size: 1rem;
  }
  .foto-benefits {
    gap: 1rem;
    padding: 0 1rem;
  }
  .foto-benefit img {
    width: 70px;
    height: 70px;
  }
  .foto-benefit h2 {
    font-size: 1.15rem;
  }
  .foto-benefit p {
    font-size: 0.95rem;
  }
  .foto-gallery {
    padding: 2rem 0;
  }
  .foto-gallery h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .foto-gallery-row {
    gap: 0.8rem;
    flex-direction: column;
    align-items: center;
  }
  .foto-gallery-row img {
    width: 90%;
    height: auto;
    max-height: 200px;
  }
  .foto-packages {
    padding: 0 1rem;
  }
  .foto-package-card {
    padding: 1.4rem 0.8rem 1.2rem 0.8rem;
  }
  .foto-package-card h3 {
    font-size: 1.1rem;
  }
  .foto-package-card .preis {
    font-size: 1.15rem;
  }
  .foto-package-card ul {
    font-size: 0.95rem;
  }
  .foto-paket-hinweis {
    font-size: 1rem;
  }
  .foto-cta {
    padding: 1.4rem 1rem;
    gap: 1.2rem;
  }
  .foto-cta-img {
    width: 100px;
    height: 100px;
  }
  .foto-cta-content h2 {
    font-size: 1.2rem;
  }
  .button-black {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
  }
}

body.impressum-bg {
  background: #fff;
  color: #181818;
}
.impressum-header {
  background: #e9e9e9;
  width: 100vw;
  padding: 4.7rem 0 3.2rem 0;
  text-align: center;
  margin-bottom: 0;
}
.impressum-header h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #181818;
  margin: 0;
}
.impressum-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2vw 6rem 2vw;
}
.impressum-block {
  margin-bottom: 2.8rem;
}
.impressum-block h2 {
  font-size: 1.43rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 2.2rem;
  margin-top: 0;
}
.impressum-block h3 {
  font-size: 1.09rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.impressum-info {
  margin-bottom: 1.8rem;
}
.impressum-block b {
  color: #181818;
  font-weight: 700;
}
.impressum-block a {
  color: #181818;
  text-decoration: underline;
  word-break: break-all;
}
.impressum-divider {
  border: none;
  border-top: 2px solid #ccc;
  margin: 3.1rem 0 2.3rem 0;
}
/* Responsive Design */
        @media (max-width: 1140px) {
            .page-container {
                padding: 15px;
            }
            .impressum-section {
                padding: 30px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 836px) {
            .impressum-section {
                padding: 25px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 450px) {
            .page-container {
                padding: 10px;
            }
            .impressum-section {
                padding: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            p {
                font-size: 0.85rem;
            }
        }



body.datenschutz-bg {
  background: #fff;
  color: #181818;
}
.datenschutz-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 4.2rem 2vw 6rem 2vw;
  font-size: 1.09rem;
  line-height: 1.72;
}
.datenschutz-main h1 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 2.7rem;
  letter-spacing: 0.03em;
}
.datenschutz-main h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 2.7rem;
  margin-bottom: 1.4rem;
  color: #181818;
}
.datenschutz-main b {
  font-weight: 700;
  color: #181818;
}
.datenschutz-main a {
  color: #8b1926;
  text-decoration: underline;
  word-break: break-all;
}
.datenschutz-main ul {
  margin: 1.1rem 0 1.8rem 0.7rem;
}
 @media (max-width: 1140px) {
            .page-container {
                padding: 15px;
            }
            .page-section {
                padding: 30px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            p, ul {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 836px) {
            .page-section {
                padding: 25px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            p, ul {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 450px) {
            .page-container {
                padding: 10px;
            }
            .page-section {
                padding: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            p, ul {
                font-size: 0.85rem;
            }
        }


/* --- TEAM Section Verbesserungen --- */
.team-grid-inline {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.team-card {
  background: #fff;
  border: none;
  box-shadow: none;
  align-items: center;
  text-align: center;
  min-width: 250px;
  flex: 1 1 260px;
  max-width: 330px;
  margin-bottom: 0;
  padding: 0 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.team-card img {
  height: 186px;
  width: 146px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1.1rem;
  border: 2.5px solid #eee;
  box-shadow: 0 4px 32px #0001;
  background: #f7f7f7;
  overflow: clip;
}
.team-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.07rem;
  font-weight: 500;
  overflow: hidden
}
.team-name {
  font-weight: 700;
  color: #111;
  font-size: 1.09rem;
  white-space: nowrap;
}
.team-role {
  font-weight: 400;
  color: #444;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
}

        /* Responsive Design */
        @media (max-width: 1140px) {
            .page-container {
                padding: 15px;
            }
            .team-section {
                padding: 30px;
            }
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            .team-member img {
                max-width: 180px;
            }
            .team-member h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 836px) {
            .team-section {
                padding: 25px;
            }
            .team-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            .team-member img {
                max-width: 160px;
            }
            .team-member h3 {
                font-size: 1.2rem;
            }
            .team-member p {
                font-size: 0.9rem;
            }
              .team-role {
               white-space: normal;
            }
        }

        @media (max-width: 450px) {
            .page-container {
                padding: 10px;
            }
            .team-section {
                padding: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .team-member img {
                max-width: 140px;
            }
            .team-member h3 {
                font-size: 1.1rem;
            }
            .team-member p {
                font-size: 0.85rem;
            }
              .team-role {
               white-space: normal;
            }
        }



.nav-links a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  padding: 0.75rem 1rem !important;
  color: #111 !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-links a:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: #000 !important;
}

.nav-links a.active {
  background-color: rgba(0, 0, 0, 0.06) !important;
  font-weight: 600 !important;
  color: #000 !important;
  border-radius: 6px !important;
}

.hero-section {
  position: relative;
  width: 100vw;
  max-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100vw;
  min-height: 568px;
  object-fit: cover;
  filter: brightness(0.78) blur(0.5px);
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.11) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 3;
  width: 100vw;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 18px #000;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  text-shadow: 0 2px 10px #000;
}


/* Universal-Content-Puffer für den "normalen" Inhalt, aber NICHT für Hero & Footer */
main,
section:not(.hero-section):not(.footer-section):not(#kontakt):not(.hero) :not(.page-section):not(.hero-section):not(.footer-section):not(#kontakt) 

.article-content,
.content,
.text-content,
#content,
#main {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  box-sizing: border-box !important;
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Mobile Anpassung */
@media (max-width: 700px) {
  main,
  section:not(.hero-section):not(.footer-section):not(#kontakt):not(.hero), 
  .article-content,
  .content,
  .text-content,
  #content,
  #main {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100vw !important;
  }
}


/* ======== footer ======== */
.footer-section {
  background: var(--black);
  color: var(--white);
  font-family: 'Segoe UI', sans-serif;
}

.footer-cta {
  text-align: center;
  padding: 3rem 1rem 2.3rem 1rem;
  background: linear-gradient(180deg, #111, #232323);
}

.footer-cta-title {
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.footer-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0.9rem 0;
}

.footer-cta-btn {
  display: inline-block;
  margin-top: 1.3rem;
  background: #000;
  color: #fff;
  font-weight: 700;
  border-radius: 0.8rem;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
}

.footer-cta-btn:hover {
  background: #ffd97e;
  color: #111;
}

/* Footer Hauptstruktur */
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 3rem 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-brand {
  flex: 1 1 240px;
  max-width: 320px;
}

.footer-brand .nav-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-brand div {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #ccc;
}

.footer-social img {
  width: 28px;
  height: 28px;
  margin-right: 0.6rem;
  border-radius: 50%;
  transition: 0.2s;
}

.footer-social a:hover img {
  filter: brightness(1.1);
  transform: scale(1.06);
}

/* Spaltenstruktur */
.footer-col {
  flex: 1 1 200px;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-heading {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffd97e;
  text-decoration: underline;
}

/* Copy-Zeile unten */
.footer-copy {
  text-align: center;
  font-size: 0.93rem;
  color: #aaa;
  padding: 2rem 1rem 2.5rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
}

.footer-copy a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: underline;
  transition: 0.2s;
}

.footer-copy a:hover {
  color: #ffd97e;
}

/* Responsives Verhalten */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .footer-col, .footer-brand {
    flex: 1 1 100%;
  }

  .footer-social {
    margin-top: 1rem;
  }

  .footer-cta h2 {
    font-size: 2rem;
  }
}



/*Cookies*/
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000 !important;
    color: white;
    text-align: left;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 25px 25px 0px 0px;
    display: none;
}

.cookie-banner-container {
    width: 1200px;
    text-align: left;
    margin: 0 auto;
}

#cookie-banner p {
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    margin-bottom: 0;
}

.cookie-mobile {
    font-size: 12px;
    line-height: 1.5;
}

#cookie-banner span {
    font-size: 12px;
}

#cookie-banner h5 {
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 10px;
}

#cookie-buttons {
    margin-top: 20px;
    text-align: left;
}

#cookie-buttons button {
    padding: 12px 22px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: background-color 0.3s ease !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
}

#accept-cookies {
    border: none !important;
    background-color: #fff !important;
    color: black !important;
    border-radius: 25px !important;
}

#decline-cookies {
    color: white !important;
    background-color: #000 !important;
    border: none !important;
}

#more-cookies {
    color: white !important;
    background-color: #000 !important;
    border: none !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    padding: 0 !important;
}

#more-cookies:hover {
    color: #8b1926;
    border: none;
    text-decoration: none;
}

#accept-cookies:hover {
    background-color: #8b1926;
    border: none;
}

#more-text {
    line-height: 0.8;
}

/*Cookie-MediaPhone*/
@media (max-width: 450px) {
  .cookie-banner-container {
    width: 90%;
    padding: 10px;
  }

  #cookie-banner {
    padding: 16px;
    border-radius: 16px 16px 0 0;
    width: 85%;
  }

  #cookie-banner h5 {
    font-size: 15px;
    margin-bottom: 8px;
    display: none;
  }

  .cookie-mobile {
    display: none;
  }

  #cookie-banner p,
  #cookie-banner span {
    font-size: 11px;
    margin: 0;
    line-height: 1.5;
  }

  #cookie-buttons {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-top: 16px;
  }

  #cookie-buttons button {
    width: 100%;
    font-size: 13px;
    padding: 10px;
    font-weight: 600;
  }
}

/*Cookie-MediaiPad*/
@media (min-width: 451px) and (max-width: 768px) {
    .cookie-banner-container {
    width: 90%;
    padding: 10px;
  }

  #cookie-banner {
    padding: 16px;
    border-radius: 16px 16px 0 0;
    width: 85%;
  }

  #cookie-banner h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  #cookie-banner p,
  #cookie-banner span {
    font-size: 11px;
  }

  #cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  #cookie-buttons button {
    width: 100%;
    font-size: 13px;
    padding: 10px;
  }
}

/*Cookie-MediaLaptop*/
@media (min-width: 769px) and (max-width: 1179px) {
    .cookie-banner-container {
    width: 90%;
    padding: 10px;
  }

  #cookie-banner {
    padding: 16px;
    border-radius: 16px 16px 0 0;
    width: 90%;
  }

  #cookie-banner h5 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  #cookie-banner p,
  #cookie-banner span {
    font-size: 11px;
  }

  #cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  #cookie-buttons button {
    width: 100%;
    font-size: 13px;
    padding: 10px;
  }
}