html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #f5eec2;
  color: #39395f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.7;
  min-height: 100vh;
}
header,
footer {
  background: linear-gradient(90deg, #f5eec2 60%, #a9c25d 100%);
  box-shadow: 0 4px 24px #416a5920;
  border-radius: 0 0 32px 32px;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem 2rem 1rem;
}
header::after {
  content: "";
  position: absolute;
  left: 50%; top: 0; transform: translateX(-50%);
  width: 120vw; height: 80px;
  background: linear-gradient(90deg, #416a59 0%, #73a24e 100%);
  opacity: 0.10;
  border-radius: 0 0 100px 100px;
  z-index: 0;
}
nav {
  margin: 2rem 0 0 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(245, 238, 194, 0.7);
  border-radius: 20px;
  box-shadow: 0 2px 12px #416a5920;
  backdrop-filter: blur(4px);
}
nav a {
  display: block;
  padding: 1rem 2rem;
  border-radius: 14px;
  color: #416a59;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  outline: none;
}
nav a:hover, nav a:focus {
  background: linear-gradient(90deg, #a9c25d 0%, #f5eec2 100%);
  color: #39395f;
  box-shadow: 0 2px 8px #416a5920;
}
.nav-current {
  color: #416a59;
  font-weight: bold;
  background: none;
  cursor: default;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  display: inline-block;
}
main {
  background: transparent;
  padding: 3rem 2.5rem;
  border-radius: 0;
  box-shadow: none;
  max-width: 950px;
  margin: auto;
  margin-bottom: 3rem;
  animation: fadeInMain 0.7s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@keyframes fadeInMain {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: none;}
}
section {
  margin-bottom: 2.5rem;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 2.5rem 0 0.5rem 0;
  position: relative;
}
section:not(:last-child)::after {
  content: "";
  display: block;
  height: 32px;
  margin: 0.5em auto 0 auto;
  border-radius: 0 0 32px 32px;
  opacity: 0.7;
  pointer-events: none;
}
h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #39395f;
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
  z-index: 1;
  position: relative;
}
h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #416a59;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #73a24e;
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
  padding: 0;
}
li {
  margin-bottom: 0.5rem;
}
p {
  margin: 0.5rem 0 1.2rem 0;
  color: #333;
}
.apple-btn, input[type="submit"] {
  display: inline-block;
  background: linear-gradient(90deg, #416a59 0%, #73a24e 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px #416a5940;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: 2.5rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  outline: none;
}
.apple-btn:hover, .apple-btn:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: linear-gradient(90deg, #73a24e 0%, #416a59 100%);
  color: #fff;
  box-shadow: 0 6px 24px #416a5960;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.faq-card {
  background: rgba(245, 238, 194, 0.45);
  box-shadow: 0 1px 6px #416a5920;
  border-radius: 18px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 0.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeInCard 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: none;}
}
.faq-card:hover, .faq-card:focus-within {
  box-shadow: 0 8px 32px #2997ff40;
  transform: translateY(-2px) scale(1.015);
}
.faq-question {
  font-weight: 700;
  color: #416a59; /* angepasst an das Layout */
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.faq-answer {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
label {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #1d1d1f;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(245, 238, 194, 0.35);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px #0001;
}
input, textarea {
  padding: 0.75rem;
  border: 1px solid #d1d1d6;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px #0001;
  transition: border 0.2s;
}
input:focus, textarea:focus {
  border: 1.5px solid #0071e3;
  outline: none;
}
input[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
small {
  color: #888;
  margin-top: -0.5rem;
}
address {
  font-style: normal;
  color: #333;
  background: rgba(245, 238, 194, 0.35);
  padding: 1.2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 4px #416a5920;
  max-width: 400px;
  margin: 0 auto 1.5rem auto;
}
.modern-flex {
  display: flex;
  align-items: flex-start;
  gap: 2.5em;
  flex-wrap: wrap;
  margin-bottom: 2em;
  justify-content: center;
}
.modern-img {
  border-radius: 18px;
  box-shadow: 0 4px 24px #416a5920;
  background: transparent;
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
  min-width: 180px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.banner-img {
  width: 670px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px #416a5920;
  background: transparent;
  margin-left: 2em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.modern-link {
  display: inline-block;
  margin-top: 1.2em;
  margin-right: 1.2em;
  color: #39395f;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.05rem;
  transition: color 0.18s;
}
.modern-link:hover, .modern-link:focus {
  color: #73a24e;
}
.modern-header {
  position: relative;
  background: transparent;
  box-shadow: none;
  border-radius: 0 0 38px 38px;
  margin-bottom: 2.5rem;
  overflow: hidden;
  padding-bottom: 0;
}
.header-bg {
  display: none;
}
.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modern-logo {
  width: 120px;
  height: 60px;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px #416a5920;
  background: #fffde9;
}
.modern-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #39395f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.modern-highlight {
  color: #73a24e;
  font-size: 1.15em;
  font-weight: 600;
  display: block;
  margin-top: 0.2em;
  letter-spacing: 0.01em;
}
.modern-header nav {
  margin: 1.5rem 0 0 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
}
.modern-header nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(245, 238, 194, 0.5);
  border-radius: 20px;
  box-shadow: 0 2px 12px #416a5920;
  backdrop-filter: blur(4px);
}
.modern-header nav a {
  display: block;
  padding: 1rem 2rem;
  border-radius: 14px;
  color: #416a59;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  outline: none;
}
.modern-header nav a:hover, .modern-header nav a:focus {
  background: linear-gradient(90deg, #a9c25d 0%, #f5eec2 100%);
  color: #39395f;
  box-shadow: 0 2px 8px #416a5920;
}
.modern-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  background: linear-gradient(90deg, rgba(245,238,194,0.55) 60%, rgba(169,194,93,0.25) 100%);
  box-shadow: 0 2px 8px #416a5920;
  border-radius: 0 0 38px 38px;
  padding: 2.2em 2em 2.2em 2em;
  margin-top: 1.2em;
  position: relative;
  z-index: 1;
}
.banner-content {
  flex: 1 1 0;
  min-width: 220px;
}
.banner-content h2 {
  font-size: 1.5rem;
  color: #416a59;
  margin-bottom: 0.5em;
  margin-top: 0;
}
.banner-content p {
  color: #333;
  margin-bottom: 1.2em;
  font-size: 1.08rem;
}

/* Startseite: Übersicht-Grid */
.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  margin: 2em 0 2em 0;
}
.product-card {
  background: rgba(245,238,194,0.45);
  border-radius: 18px;
  box-shadow: 0 2px 8px #416a5920;
  padding: 1.2em 1em 1.5em 1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.product-card img {
  border-radius: 12px;
  margin-bottom: 1em;
  box-shadow: 0 2px 8px #416a5920;
  background: #fff;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.product-card h3 {
  margin: 0.5em 0 0.3em 0;
  font-size: 1.1rem;
  color: #416a59;
}
.product-card p {
  font-size: 1rem;
  color: #39395f;
  margin-bottom: 0.7em;
}
.product-card .modern-link {
  margin-top: auto;
  font-size: 0.98rem;
}

/* USP-Liste */
.usp-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 2em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em 2.5em;
  align-items: center;
  justify-content: center;
}
.usp-list li {
  flex: 1 1 320px;
  background: rgba(169,194,93,0.13);
  border-radius: 10px;
  padding: 0.7em 1em;
  font-size: 1.05rem;
  color: #416a59;
  box-shadow: 0 1px 4px #416a5920;
}

/* Schritte-Liste */
.steps-list {
  list-style: decimal inside;
  margin: 1.2em 0 2em 1.2em;
  padding: 0;
  color: #39395f;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.steps-list li {
  margin-bottom: 0.7em;
  font-size: 1.05rem;
}

/* FAQ-Preview */
.faq-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin: 1.5em 0 0.5em 0;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
.faq-preview > div {
  flex: 1 1 220px;
  background: rgba(245,238,194,0.45);
  border-radius: 10px;
  padding: 1em 1em 0.7em 1em;
  box-shadow: 0 1px 4px #416a5920;
  min-width: 180px;
}
.faq-preview strong {
  color: #416a59;
  display: block;
  margin-bottom: 0.3em;
}
.faq-preview p {
  margin: 0 0 0.3em 0;
  font-size: 0.98em;
}
.faq-preview .modern-link {
  margin-top: 1.2em;
  font-size: 0.98rem;
}

/* Zentrierte Überschrift */
.centered {
  text-align: center;
}

/* Hero-Section Anpassung */
.home-hero {
  align-items: flex-start;
  gap: 2.5em;
}

/* Responsive Anpassungen */
@media (max-width: 1100px) {
  .product-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
}
@media (max-width: 900px) {
  .modern-banner {
    flex-direction: column;
    gap: 1.2em;
    padding: 1.2em 0.5em 1.2em 0.5em;
  }
  .banner-img {
    margin-left: 0;
    margin-top: 1em;
    width: 100%;
    max-width: 340px;
  }
  .header-content {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
}
@media (max-width: 700px) {
  html, body {
    font-size: 16px;
    line-height: 1.5;
  }
  .modern-header,
  .modern-banner,
  header {
    border-radius: 0;
    margin-bottom: 1.2rem;
    padding: 0;
  }
  .header-content {
    padding: 1rem 0.3rem 0.7rem 0.3rem;
  }
  .modern-logo {
    width: 80px;
    height: 40px;
    margin-bottom: 0.7rem;
  }
  .modern-header h1,
  h1 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    line-height: 1.25;
  }
  .modern-highlight {
    font-size: 1em;
    margin-top: 0.1em;
  }
  .modern-header nav ul,
  nav ul {
    gap: 0.2rem;
    border-radius: 8px;
    box-shadow: none;
    padding: 0.2em 0.2em;
  }
  .modern-header nav a,
  nav a {
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    font-size: 0.95rem;
  }
  .modern-banner {
    flex-direction: column;
    gap: 0.7em;
    padding: 0.7em 0.2em 0.7em 0.2em;
    margin-top: 0.5em;
    box-shadow: none;
  }
  .banner-content {
    min-width: 0;
    width: 100%;
    text-align: center;
  }
  .banner-content h2 {
    font-size: 1rem;
    margin-bottom: 0.3em;
  }
  .banner-content p {
    font-size: 0.98rem;
    margin-bottom: 0.7em;
  }
  .banner-img {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    margin: 0.5em auto 0 auto;
    border-radius: 10px;
  }
  main {
    border-radius: 0;
    padding: 0.7rem 0.1rem;
    margin-bottom: 1.2rem;
    max-width: 100vw;
  }
  section {
    margin-bottom: 0.8rem;
    padding: 0 0.2em;
  }
  h2 {
    font-size: 1rem;
    margin-top: 1.1rem;
    margin-bottom: 0.7rem;
  }
  h3 {
    font-size: 0.98rem;
    margin-top: 1rem;
    margin-bottom: 0.2rem;
  }
  .modern-flex {
    flex-direction: column;
    gap: 0.5em;
    align-items: stretch;
    margin-bottom: 1em;
  }
  .modern-img {
    min-width: 80px;
    max-width: 100%;
    height: auto;
    margin: 0.3em auto 0.7em auto;
    border-radius: 8px;
  }
  .modern-link, .apple-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    margin-top: 0.7em;
    margin-right: 0.5em;
    border-radius: 8px;
  }
  ul {
    margin-left: 0.7em;
    font-size: 0.98em;
  }
  .faq-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.7em !important;
    padding: 0;
    margin: 1.5em 0 2em 0;
  }
  .faq-card {
    width: 100%;
    border-radius: 10px;
    padding: 0.7rem 0.4rem;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  form, address {
    max-width: 100%;
    padding: 1rem 0.5rem;
    border-radius: 8px;
  }
  input, textarea {
    font-size: 0.98rem;
    padding: 0.5rem;
    border-radius: 6px;
  }
  footer {
    padding: 1.2rem 0.2rem 0.7rem 0.2rem;
    font-size: 0.95rem;
    margin-top: 1.2rem;
    border-radius: 0 0 12px 12px;
  }
  footer::before {
    width: 40px;
    margin-bottom: 0.7em;
  }
}

/* --- Mobile Navigation Verbesserungen --- */
@media (max-width: 700px) {
  nav ul,
  .modern-header nav ul {
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px #416a5920;
    padding: 0.2em 0;
    width: 100vw;
    max-width: 340px;
    margin: 0 auto;
    background: rgba(245,238,194,0.97);
    align-items: stretch;
  }
  nav li,
  .modern-header nav li {
    width: 100%;
    border-bottom: 1px solid #e3e3c9;
    text-align: center;
  }
  nav li:last-child,
  .modern-header nav li:last-child {
    border-bottom: none;
  }
  nav a,
  .modern-header nav a {
    padding: 0.9em 0.5em;
    border-radius: 0;
    font-size: 1.08rem;
    width: 100%;
    display: block;
    transition: background 0.18s, color 0.18s;
  }
  nav a:active,
  .modern-header nav a:active {
    background: #a9c25d;
    color: #fff;
  }
  .header-content {
    padding: 1.2rem 0.2rem 0.7rem 0.2rem;
  }
  .nav-current {
    padding: 0.9em 0.5em;
    border-radius: 0;
    width: 100%;
    display: block;
    background: none;
  }
}

/* Optional: Hamburger-Button für noch bessere UX (nur CSS, kein JS) */
@media (max-width: 700px) {
  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #416a59;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 20;
    cursor: pointer;
  }
  nav,
  .modern-header nav {
    position: relative;
  }
  nav ul,
  .modern-header nav ul {
    transition: max-height 0.3s;
    overflow: hidden;
    max-height: 1000px;
  }
  body.menu-closed nav ul,
  body.menu-closed .modern-header nav ul {
    max-height: 0;
    padding: 0;
    border: none;
  }
}

/* --- Ende Mobile Navigation --- */

/* Zentrierung für Hauptinhalte */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Zentrierung für Sections und Inhalte */
section, .home-hero, .modern-flex, .usp-list, .steps-list, .faq-preview, .product-overview-grid {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Listen und Cards mittig */
.usp-list, .steps-list, .faq-preview, .product-overview-grid {
  margin-left: auto;
  margin-right: auto;
}

/* Für flexbox-Elemente: Inhalt mittig */
.modern-flex {
  justify-content: center;
}

/* Für Text in Cards */
.product-card, .faq-card {
  text-align: center;
}

/* Für Bilder in Cards */
.product-card img, .modern-img, .banner-img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Für mobile: auch mittig */
@media (max-width: 700px) {
  main, section, .home-hero, .modern-flex, .usp-list, .steps-list, .faq-preview, .product-overview-grid {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* Tablet-Optimierung (700px - 1100px) */
@media (min-width: 701px) and (max-width: 1100px) {
  nav ul,
  .modern-header nav ul {
    gap: 1rem;
    padding: 0.5em 0.5em;
    font-size: 1.02rem;
    border-radius: 14px;
    max-width: 90vw;
  }
  nav a,
  .modern-header nav a,
  .nav-current {
    padding: 0.7em 1.2em;
    font-size: 1.02rem;
    border-radius: 10px;
  }
  .modern-logo {
    width: 90px;
    height: 45px;
    margin-bottom: 0.8rem;
  }
  .header-content {
    padding: 1.7rem 0.7rem 1rem 0.7rem;
  }
  .modern-header h1,
  h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .modern-banner {
    gap: 1.2em;
    padding: 1.2em 0.7em 1.2em 0.7em;
  }
  .banner-img {
    max-width: 320px;
    width: 100%;
    margin-left: 0.7em;
  }
  .modern-flex {
    gap: 1.2em;
  }
  .product-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2em;
  }
  .usp-list {
    gap: 0.7em 1.2em;
  }
  .faq-list {
    gap: 1.2em;
  }
  .faq-card {
    padding: 1.2rem 0.7rem;
    border-radius: 14px;
  }
  .modern-img {
    min-width: 120px;
    max-width: 90vw;
  }
  main {
    padding: 2rem 0.7rem;
    max-width: 98vw;
  }
  section {
    padding: 1.2rem 0.2rem;
  }
}

/* Hamburger-Button nur auf Mobil/Tablet anzeigen */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .mobile-nav-toggle {
    display: block;
  }
}

/* Keine Änderung nötig. Die Vereinheitlichung erfolgt durch die HTML-Struktur. */

/* Zentrierung für Hauptinhalte */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Zentrierung für Sections und Inhalte */
section, .home-hero, .modern-flex, .usp-list, .steps-list, .faq-preview, .product-overview-grid {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Listen und Cards mittig */
.usp-list, .steps-list, .faq-preview, .product-overview-grid {
  margin-left: auto;
  margin-right: auto;
}

/* Für flexbox-Elemente: Inhalt mittig */
.modern-flex {
  justify-content: center;
}

/* Für Text in Cards */
.product-card, .faq-card {
  text-align: center;
}

/* Für Bilder in Cards */
.product-card img, .modern-img, .banner-img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Für mobile: auch mittig */
@media (max-width: 700px) {
  main, section, .home-hero, .modern-flex, .usp-list, .steps-list, .faq-preview, .product-overview-grid {
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* Tablet-Optimierung (700px - 1100px) */
@media (min-width: 701px) and (max-width: 1100px) {
  nav ul,
  .modern-header nav ul {
    gap: 1rem;
    padding: 0.5em 0.5em;
    font-size: 1.02rem;
    border-radius: 14px;
    max-width: 90vw;
  }
  nav a,
  .modern-header nav a,
  .nav-current {
    padding: 0.7em 1.2em;
    font-size: 1.02rem;
    border-radius: 10px;
  }
  .modern-logo {
    width: 90px;
    height: 45px;
    margin-bottom: 0.8rem;
  }
  .header-content {
    padding: 1.7rem 0.7rem 1rem 0.7rem;
  }
  .modern-header h1,
  h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .modern-banner {
    gap: 1.2em;
    padding: 1.2em 0.7em 1.2em 0.7em;
  }
  .banner-img {
    max-width: 320px;
    width: 100%;
    margin-left: 0.7em;
  }
  .modern-flex {
    gap: 1.2em;
  }
  .product-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2em;
  }
  .usp-list {
    gap: 0.7em 1.2em;
  }
  .faq-list {
    gap: 1.2em;
  }
  .faq-card {
    padding: 1.2rem 0.7rem;
    border-radius: 14px;
  }
  .modern-img {
    min-width: 120px;
    max-width: 90vw;
  }
  main {
    padding: 2rem 0.7rem;
    max-width: 98vw;
  }
  section {
    padding: 1.2rem 0.2rem;
  }
}

/* Hamburger-Button nur auf Mobil/Tablet anzeigen */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .mobile-nav-toggle {
    display: block;
  }
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
  padding: 2.5em 0 2em 0;
  background: none;
  box-shadow: none;
}
.hero-text {
  flex: 1 1 0;
  min-width: 220px;
  text-align: left;
}
.hero-img {
  max-width: 370px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px #416a5920;
  background: transparent;
  margin: 0;
}
/* Responsive Anpassung */
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    gap: 1.2em;
    padding: 1.2em 0.5em 1.2em 0.5em;
  }
  .hero-text {
    text-align: center;
  }
  .hero-img {
    max-width: 100%;
    margin-top: 1em;
  }
}
