
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      color: #111827;
      background: #f3f4f6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(249, 250, 251, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e5e7eb;
    }

    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
    }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .logo {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .logo-title {
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.85rem;
    }

    .logo-subtitle {
      font-size: 0.75rem;
      color: #6b7280;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.25rem;
      font-size: 0.9rem;
    }

    nav a {
      color: #374151;
      font-weight: 500;
    }

    nav a:hover {
      color: #111827;
    }

    .lang-switch {
      display: flex;
      gap: 0.35rem;
      align-items: center;
    }

    .lang-btn {
      border-radius: 999px;
      border: 1px solid #d1d5db;
      padding: 0.25rem 0.5rem;
      font-size: 0.75rem;
      background: #ffffff;
      cursor: pointer;
      min-width: 2.3rem;
      text-align: center;
    }

    .lang-btn.active {
      background: #111827;
      color: #ffffff;
      border-color: #111827;
    }

    main {
      padding: 2rem 1.5rem 3rem;
    }



    .hero {
      max-width: 1120px;
      margin: 0 auto 2.5rem;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
      gap: 2.5rem;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      padding: 0.2rem 0.65rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b7280;
      margin-bottom: 0.75rem;
      background: #ffffff;
    }

    .hero h1 {
      font-size: clamp(1.9rem, 2.6vw, 2.5rem);
      line-height: 1.15;
      margin-bottom: 0.9rem;
      color: #111827;
    }

    .hero p {
      font-size: 0.98rem;
      color: #4b5563;
      margin-bottom: 1.2rem;
    }

    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .hero-pill {
      border-radius: 999px;
      border: 1px solid #d1d5db;
      padding: 0.3rem 0.75rem;
      font-size: 0.75rem;
      background: #ffffff;
      color: #374151;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.78rem;
      color: #6b7280;
    }

    .hero-meta strong {
      display: block;
      font-size: 0.8rem;
      color: #111827;
    }

    .hero-visual {
     /* background: radial-gradient(circle at top left, #e5e7eb, #111827);
      border-radius: 1.5rem;
      min-height: 220px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
      color: #f9fafb;
      padding: 1.5rem;
      */
      background: radial-gradient(circle at top left, #e5e7eb, #111827);
      border-radius: 1.5rem;
      min-height: 280px; /* Erhöht, um mehr Platz für den Text zu lassen */
      position: relative; 
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
      color: #f9fafb;
      padding: 1.5rem;
      /* Flexbox, um den Inhalt besser zu verwalten */
      display: flex;
      flex-direction: column;
      justify-content: flex-start; /* Stellt den Inhalt oben an */
      }

    .hero-visual h2 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .hero-visual p {
     /* font-size: 0.85rem;
      max-width: 22rem;
      color: #e5e7eb;
      */
      font-size: 0.85rem;
      max-width: 22rem;
      color: #e5e7eb;
      margin-bottom: 9rem; /* signifikanten Abstand nach unten hinzu, 
       um Platz für das absolut positionierte Grid zu schaffen*/
    }

    .hero-visual-grid {
      /* position: absolute;
      inset: auto 1.5rem 1.5rem 1.5rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
      */
      /* Die Positionierung wird vom unteren Rand aus beibehalten, dabei sicherstellen, dass es den Platz nicht mit dem Text teilt. */
      position: absolute; 
      /* Setzt das Gitter 1.5rem vom unteren und seitlichen Rand des .hero-visual entfernt */
      inset: auto 1.5rem 1.5rem 1.5rem;
      height: 7rem; /* Feste Höhe für die Karten festlegen */
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .hero-card {
      background: rgba(17, 24, 39, 0.75);
      border-radius: 0.9rem;
      padding: 0.6rem 0.7rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      backdrop-filter: blur(10px);
      font-size: 0.72rem;
    }

    .hero-card-title {
      font-weight: 600;
      margin-bottom: 0.15rem;
    }

    .hero-card-sub {
      font-size: 0.7rem;
      color: #e5e7eb;
    }

    section {
      max-width: 1120px;
      margin: 0 auto 2.5rem;
    }

    section h2 {
      font-size: 1.3rem;
      margin-bottom: 0.9rem;
      color: #111827;
    }

    .section-intro {
      font-size: 0.94rem;
      color: #4b5563;
      margin-bottom: 1.4rem;
      max-width: 40rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .card {
      background: #ffffff;
      border-radius: 0.9rem;
      padding: 1.1rem 1.1rem 1.2rem;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
      border: 1px solid #e5e7eb;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .card h3 {
      font-size: 0.98rem;
      color: #111827;
    }

    .card p {
      font-size: 0.86rem;
      color: #4b5563;
    }

    .card ul {
      margin-left: 1rem;
      font-size: 0.84rem;
      color: #4b5563;
      list-style: disc;
    }

    .tagline {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #9ca3af;
      margin-bottom: 0.35rem;
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 1.75rem;
      align-items: flex-start;
    }

    .highlight-box {
      background: #111827;
      color: #f9fafb;
      border-radius: 1rem;
      padding: 1.2rem 1.3rem 1.3rem;
      box-shadow: 0 16px 32px rgba(15, 23, 42, 0.35);
      font-size: 0.88rem;
    }

    .highlight-box strong {
      color: #e5e7eb;
    }

    .list-check {
      list-style: none;
      padding-left: 0;
    }

    .list-check li {
      position: relative;
      padding-left: 1.4rem;
      margin-bottom: 0.35rem;
      font-size: 0.86rem;
      color: #4b5563;
    }

    .list-check li::before {
      content: "•";
      position: absolute;
      left: 0.4rem;
      top: 0;
      color: #10b981;
      font-size: 1.1rem;
      line-height: 1;
    }

    .contact-card {
      background: #ffffff;
      border-radius: 1rem;
      padding: 1.2rem 1.3rem 1.4rem;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
      border: 1px solid #e5e7eb;
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
      gap: 1.5rem;
      align-items: center;
    }

    .contact-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.4rem;
    }

    .contact-card p {
      font-size: 0.88rem;
      color: #4b5563;
      margin-bottom: 0.7rem;
    }

    .contact-meta {
      font-size: 0.84rem;
      color: #374151;
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .contact-meta span {
      display: block;
    }

    .contact-emphasis {
      font-size: 0.78rem;
      color: #6b7280;
      margin-top: 0.5rem;
    }

    .contact-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      border: 1px solid #111827;
      font-size: 0.8rem;
      font-weight: 500;
      background: #111827;
      color: #ffffff;
      margin-top: 0.4rem;
      cursor: pointer;
    }

    .contact-cta:hover {
      opacity: 0.95;
    }

    .contact-note {
      font-size: 0.78rem;
      color: #6b7280;
      margin-top: 0.25rem;
    }


      /* Styling für die zwei Spalten */
  .form-grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: Eine Spalte */
    gap: 2rem;
  }
  @media (min-width: 768px) {
    .form-grid-container {
      grid-template-columns: repeat(2, 1fr); /* Desktop: Zwei Spalten */
    }
  }

  /* Container für jeden Formularbereich */
  .contact-area {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  }

  .contact-area h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.5rem;
  }

  /* Formular-Layout (zwei Spalten innerhalb der Form) */
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .form-group {
    flex: 1 1 calc(50% - 0.5rem); /* Führt zu 2 Spalten auf Desktop */
    display: flex;
    flex-direction: column;
  }

  .form-group.full-width {
    flex: 1 1 100%;
  }

  .form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: #4b5563;
  }

  /* Styling für Inputs und Textareas */
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    background-color: #f9fafb;
    color: #111827;
    transition: border-color 0.2s;
  }
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
  }
  .contact-form textarea {
    resize: vertical;
  }

  /* Button-Styling anpassen, um vollen Platz zu nutzen */
  .contact-form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Styling für Terminbuchungs-Platzhalter */
  .booking-placeholder {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
  }
  .booking-placeholder p {
    font-weight: 600;
    margin-bottom: 1rem;
  }

  /* Erzeugt eine dünne, horizontale Linie als optische Trennung. */
  .contact-divider {
    height: 1px;
    background-color: #e5e7eb; /* Entspricht Ihrer border-Farbe */
    width: 100%;
    /* Abstand oberhalb und unterhalb der Linie */
    margin: 1.5rem 0; 
  }

  .secondary-cta {
    background-color: #f3f4f6;
    color: #1f2937 !important;
    border: 1px solid #d1d5db;
  }
  .secondary-cta:hover {
    background-color: #e5e7eb;
  }
    footer {
      border-top: 1px solid #e5e7eb;
      padding: 1.25rem 1.5rem 2rem;
      background: #f9fafb;
      font-size: 0.8rem;
      color: #6b7280;
    }

    footer .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links span {
      cursor: default;
    }

    /* Blendet alle Sprach-Elemente aus, deren Klasse nicht mit der aktuellen Body-Klasse übereinstimmt. */
    body:not(.lang-nl) .lang-nl,
    body:not(.lang-de) .lang-de,
    body:not(.lang-en) .lang-en {
      display: none !important;
    }

    /*
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-visual {
        order: -1;
      }

      .hero-visual-grid {
        position: static;
        margin-top: 1.2rem;
      }

      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .two-column {
        grid-template-columns: minmax(0, 1fr);
      }

      .contact-card {
        grid-template-columns: minmax(0, 1fr);
      }
    }
    */

    @media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-visual {
        order: -1;
        /* Mobile Höhe anpassen, da das Grid statisch wird */
        min-height: auto; 
        padding-bottom: 1.5rem; /* Standard-Padding beibehalten */
    }

    /* WICHTIGE KORREKTUR: Im mobilen Modus wird die absolute Positionierung entfernt. */
    .hero-visual-grid {
        position: static; /* Positionierung entfernen */
        inset: auto; /* Absolute Positionierung zurücksetzen */
        margin-top: 1.2rem;
        height: auto; /* Feste Höhe entfernen */
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    /* Den großen unteren Abstand für den Text entfernen, 
       wenn das Grid statisch wird. */
    .hero-visual p {
        margin-bottom: 0; 
    }

    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-card {
        grid-template-columns: minmax(0, 1fr);
    }
    }

    @media (max-width: 640px) {
      .nav-bar {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      header .container {
        padding-inline: 1rem;
      }

      main {
        padding-inline: 1rem;
      }

      footer {
        padding-inline: 1rem;
      }
    }

      /* --- Statusmeldungen (Feedback nach Formularversand) --- */

  /* Beispiel CSS für styles.css */
.status-message-container {
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    max-width: 800px; /* Optional: Breite begrenzen */
    margin-left: auto; /* Zentrierung */
    margin-right: auto; /* Zentrierung */
}
.status-message-container p {
    margin: 0;
}
.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.error, .mail_error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hero p, .hero-card-title {
    word-break: break-word; /* Oder overflow-wrap: break-word; */
}