  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
  }

  header {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	  padding-top: 0;
  padding-bottom: 0;
  }

  .header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	min-height: 130px;
  }

  .logo {
    height: 160px;
    width: auto;
    max-width: 100%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    flex-shrink: 0;
  }

  nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  nav a,
  .mobile-nav a {
    text-decoration: none;
    color: #2f3b3a;
    font-weight: 500;
    white-space: nowrap;
    font-size: 1rem;
	 line-height: 1;
  padding: 0;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
  }

  .menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 90px;
    right: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
  }

  .mobile-nav a {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
  }

  .hero {
    background: url('img/neustadt-hero.webp') no-repeat center center/cover;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    position: relative;
    padding-top: 100px;
  }

  .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
  }

  .hero-content {
    position: relative;
    max-width: 600px;
    padding: 40px;
    margin-left: 5%;
  }

  h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .cta-buttons a,
  .section-prices .call-now {
    display: inline-block;
    margin: 30px auto 0 auto;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    background-color: #e0b23d;
  }

  .time-info {
    background-color: #444;
  }

  .trust-icons {
    margin-top: 30px;
  }

  .trust-icons div {
    margin-bottom: 10px;
    font-size: 1rem;
  }

 .section-prices {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-prices h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #2f3b3a;
}

.price-boxes-wrapper {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.price-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
}

.price-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.price-box h3 {
  margin-top: 0;
  color: #2f3b3a;
}

.price-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.price-image-block {
  max-width: 450px;
  margin: 0 auto;
}

.price-image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.price-intro {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.6;
}

.call-now {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: #e0b23d;
}



  @media screen and (max-width: 1024px) {
    nav {
      display: none;
    }
    .menu-toggle {
      display: flex;
    }
    .mobile-nav.active {
      display: flex;
    }
    .header-inner {
  padding: 0 40px;
  min-height: 100px;
}

  }.section-services {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.section-services h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.service-box h3 {
  margin-top: 0;
  color: #2f3b3a;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.5;
}
.service-box h3 a {
  color: #2f3b3a;
  text-decoration: none;
}

.service-box h3 a:hover {
  text-decoration: underline;
}
.service-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-icon {
  font-size: 2.4rem;
  color: #2f3b3a;
  margin-bottom: 10px;
  display: block;
}

.section-why {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.section-why h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-box {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.why-box i {
  font-size: 2.4rem;
  color: #e0b23d;
  margin-bottom: 15px;
}

.why-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #2f3b3a;
}

.why-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.why-cta-wrapper {
  text-align: center;
  margin-top: 90px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.why-cta {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: #e0b23d;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* MOBILE FIX: mehr Abstand zwischen Boxen + stärkere Abgrenzung */
@media screen and (max-width: 768px) {
  .why-box {
    margin-bottom: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  }
}

.section-trust {
  padding: 80px 20px;
  background-color: #ffffff;
}

.section-trust h2 {
  font-size: 2.2rem;
  margin: 0 auto 50px auto;
  text-align: center;
  color: #2f3b3a;
  max-width: 1200px;
}

.trust-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 80px auto;
}

.trust-grid-2x3 {
  flex: 1 1 65%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-style: italic;
  color: #333;
}

.trust-box .stars {
  font-size: 1.3rem;
  color: #e0b23d;
  margin-bottom: 10px;
  font-style: normal;
}

.trust-box span {
  display: block;
  margin-top: 15px;
  font-weight: 500;
  color: #2f3b3a;
  font-style: normal;
}

.trust-image-right {
  flex: 1 1 30%;
  text-align: center;
}

.trust-image-right img {
  width: 100%;
  height: auto;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Optimierung */
@media screen and (max-width: 992px) {
  .trust-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .trust-grid-2x3 {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .trust-image-right {
    margin-top: 40px;
  }

  .trust-image-right img {
    max-width: 90%;
  }
}





.section-process {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-process h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #e0b23d;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 1.2rem;
}

.section-faq {
  padding: 80px 20px;
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.section-faq h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #2f3b3a;
}

.faq-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.section-ratgeber {
  background-color: #fcfaf5;
  padding: 80px 20px;
}

.ratgeber-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ratgeber-headline {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #2f3b3a;
}

.ratgeber-intro {
  margin: 0 auto 60px auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.ratgeber-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.ratgeber-textblock {
  flex: 1 1 600px;
}

.ratgeber-bildblock {
  flex: 1 1 350px;
}

.ratgeber-bildblock img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ratgeber-body {
  margin: 0 auto;
}

.ratgeber-body h3 {
  margin-top: 40px;
  font-size: 1.3rem;
  color: #2f3b3a;
}

.ratgeber-body p,
.ratgeber-body ul,
.ratgeber-body li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.ratgeber-body ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.vergleich {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.vergleich th,
.vergleich td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  font-size: 0.95rem;
}

.vergleich th {
  background-color: #f4f4f4;
  color: #2f3b3a;
}

@media screen and (max-width: 992px) {
  .ratgeber-split {
    flex-direction: column;
  }

  .ratgeber-intro,
  .ratgeber-body {
    text-align: left;
  }
}
.ratgeber-body-image {
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
}

.ratgeber-body-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.ratgeber-body-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0 60px 0;
  align-items: flex-start;
}

.ratgeber-body-textblock {
  flex: 1 1 600px;
}

.ratgeber-body-bildblock {
  flex: 1 1 320px;
}

.ratgeber-body-bildblock img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 992px) {
  .ratgeber-body-split {
    flex-direction: column;
  }
}


.section-ort {
  background-color: #f1f1ec;
  padding: 80px 20px;
}

.ort-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ort-headline {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
}

.ort-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.ort-text {
  flex: 1 1 600px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.ort-bild {
  flex: 1 1 350px;
}

.ort-bild img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 992px) {
  .ort-split {
    flex-direction: column;
  }

  .ort-text {
    text-align: left;
  }
}

.section-ortsteile {
  background-color: #f9f7f2; /* andere Farbe als .section-ort */
  padding: 80px 20px;
}

.ortsteile-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.ortsteile-headline {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2f3b3a;
}

.ortsteile-intro {
  text-align: center;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #444;
}

.ortsteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.ortsteil h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #2f3b3a;
}

.ortsteil p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.ortsteil {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.ortsteil:hover {
  transform: translateY(-3px);
}

.section-cta {
  background-color: #2f3b3a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.cta-headline {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-button {
  background-color: #e0b23d;
  color: #2f3b3a;
  padding: 15px 30px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.cta-button.secondary {
  background-color: transparent;
  border: 2px solid #e0b23d;
  color: #e0b23d;
}

.cta-button:hover {
  opacity: 0.9;
}

.footer-napo {
  background-color: #2f3b3a;
  color: #fff;
  padding: 40px 20px;
}

.footer-napo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.napo-block {
  flex: 1 1 300px;
}

.napo-block h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #e0b23d;
}

.napo-block p,
.napo-block a {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-bottom {
  background-color: #222;
  color: #aaa;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: underline;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #fff;
}

.service-image {
  margin-top: 60px;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.trust-image {
  margin-top: 60px;
  text-align: center;
}

.trust-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.hero-button {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  background-color: #e0b23d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-button.secondary {
  background-color: transparent;
  border: 2px solid #e0b23d;
  color: #e0b23d;
}

.section-toc {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-toc h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.toc-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #2f3b3a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.toc-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.toc-card p {
  font-size: 0.95rem;
  color: #555;
}

.toc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.why-longform {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.why-longform h3 {
  font-size: 1.3rem;
  margin-top: 40px;
  color: #2f3b3a;
}

.why-longform ul {
  list-style-type: disc;
  padding-left: 25px;
  margin: 15px 0 25px 0;
}

.why-longform li {
  margin-bottom: 10px;
}

.why-cta {
  text-align: center;
  margin-top: 50px;
}

.why-cta .cta-button {
  padding: 15px 30px;
  font-size: 1.1rem;
  background-color: #e0b23d;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.section-loesungen {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-loesungen h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
}

.loesungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.loesung-box {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.loesung-box img {
  width: 100%;
  height: auto;
  display: block;
}

.loesung-box h3 {
  font-size: 1.2rem;
  margin: 20px 20px 10px 20px;
  color: #2f3b3a;
}

.loesung-box p {
  font-size: 0.95rem;
  margin: 0 20px 20px 20px;
  color: #444;
  line-height: 1.5;
}

.section-loesungen {
  padding: 80px 20px;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.section-loesungen h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #2f3b3a;
}

.loesung-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.loesung-bild {
  flex: 1 1 40%;
  max-width: 500px;
}

.loesung-bild img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: block;
}

.loesung-content {
  flex: 1 1 55%;
  max-width: 600px;
}

.loesung-content h3 {
  font-size: 1.4rem;
  color: #2f3b3a;
  margin-bottom: 15px;
}

.loesung-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.loesung-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.loesung-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #333;
}

.loesung-content ul li::before {
  content: '✔';
  color: #e0b23d;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.4;
}

.section-ablauf {
  padding: 80px 20px;
  background-color: #fcfaf5;
  text-align: center;
}

.section-ablauf h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
}

.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.ablauf-step {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
}

.ablauf-number {
  font-size: 2rem;
  font-weight: bold;
  color: #e0b23d;
  margin-bottom: 15px;
}

.ablauf-step h3 {
  font-size: 1.2rem;
  color: #2f3b3a;
  margin-bottom: 10px;
}

.ablauf-step p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


/* Mobil */
@media screen and (max-width: 768px) {
  .loesung-block {
    flex-direction: column;
  }
}


.section-preise {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.section-preise h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #2f3b3a;
}

.preis-grid-redesign {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.preis-box {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preis-label {
  background-color: #e0b23d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 15px;
}

.preis-box h3 {
  font-size: 1.2rem;
  color: #2f3b3a;
  margin: 0 0 10px;
}

.preis-box p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.4;
}

.preis-wert {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2f3b3a;
  margin-bottom: 6px;
}

.preis-info {
  font-size: 0.85rem;
  color: #666;
  margin-top: auto;
}

.preis-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
}

.section-preise .cta-button {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  background-color: #e0b23d;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Mobile */
@media screen and (max-width: 768px) {
  .preis-grid-redesign {
    grid-template-columns: 1fr;
  }
}

.section-faq-clean {
  padding: 100px 20px;
  background-color: #fcfaf5;
}

.section-faq-clean h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2f3b3a;
}

.section-faq-clean .faq-item {
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-faq-clean .faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2f3b3a;
}

.section-faq-clean .faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}




.section-einsatzgebiet {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.section-einsatzgebiet h2 {
  font-size: 2.2rem;
  color: #2f3b3a;
  margin-bottom: 40px;
}

.einsatzgebiet-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.einsatzgebiet-text {
  flex: 1 1 500px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.einsatzgebiet-bild {
  flex: 1 1 400px;
}

.einsatzgebiet-bild img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.section-einsatzgebiet .cta-button {
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 1.1rem;
  background-color: #e0b23d;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Mobil */
@media screen and (max-width: 768px) {
  .einsatzgebiet-content {
    flex-direction: column;
    text-align: left;
  }

  .einsatzgebiet-bild img {
    max-width: 100%;
  }
}
.section-trustabschluss {
  padding: 100px 20px;
  background-color: #f7f5ef; /* vorher: #ffffff */
  text-align: center;
  border-top: 1px solid #eee;
}


.trustabschluss-wrapper {
  max-width: 800px;
  margin: 0 auto;
  color: #2f3b3a;
}

.section-trustabschluss h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.section-trustabschluss p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.trustabschluss-siegel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2f3b3a;
  margin-bottom: 40px;
}

.section-trustabschluss .cta-button {
  padding: 15px 30px;
  background-color: #e0b23d;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.section-schliessanlage {
  background-color: #fcfaf5;
  padding: 100px 20px;
}

.sa-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  color: #2f3b3a;
}

.section-schliessanlage h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.section-schliessanlage p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
}

.section-einsatzbereiche {
  background-color: #ffffff;
  padding: 100px 20px;
  color: #2f3b3a;
  text-align: center;
}

.einsatzbereiche-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.einsatzbereiche-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.einsatz-intro {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.einsatz-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.einsatz-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.einsatz-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.section-vorteile {
  background-color: #fcfaf5;
  padding: 100px 20px;
  color: #2f3b3a;
  text-align: center;
}

.vorteile-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.vorteile-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.vorteile-intro {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.vorteil-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.vorteil-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.vorteil-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}


.section-systeme {
  background-color: #ffffff;
  padding: 100px 20px;
  color: #2f3b3a;
  text-align: center;
}

.systeme-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-systeme h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.systeme-intro {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
  text-align: left;
}

.systeme-table {
  display: grid;
  gap: 20px;
}

.systeme-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
}

.systeme-header {
  background-color: #e0b23d;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .systeme-row {
    grid-template-columns: 1fr;
  }

  .systeme-header {
    display: none;
  }
}

.section-schluessel {
  background-color: #ffffff;
  padding: 100px 20px;
  color: #2f3b3a;
  text-align: center;
}

.schluessel-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-schluessel h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.schluessel-intro {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.schluessel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.schluessel-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.schluessel-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.schluessel-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.section-faq-clean {
  padding: 100px 20px;
  background-color: #fcfaf5;
  color: #2f3b3a;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.section-faq-clean h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2f3b3a;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.section-cta {
  background-color: #2f3b3a;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.section-cta h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.section-cta p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ddd;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #e0b23d;
  color: #2f3b3a;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.section-impressum {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #2f3b3a;
}

.impressum-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.section-impressum h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.section-impressum h2 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 10px;
}

.section-impressum p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.section-datenschutz {
  padding: 80px 20px;
  background-color: #ffffff;
  color: #2f3b3a;
}

.datenschutz-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.section-datenschutz h1 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
}

.section-datenschutz h2 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 10px;
}

.section-datenschutz p,
.section-datenschutz ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
