* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      line-height: 1.7;
      color: var(--text-color);
      background-color: var(--white);
      font-weight: 300;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section,
    footer {
      padding: 80px 0;
    }

    section:nth-of-type(even) {
      background-color: var(--light-gray);
    }

    h1,
    h2,
    h3 {
      margin-bottom: 25px;
      color: var(--primary-color);
      text-align: center;
      font-weight: 600;
    }

    h1 {
      font-size: 2.8em;
      line-height: 1.3;
      color: var(--white);
    }

    h2 {
      font-size: 2.2em;
      margin-bottom: 40px;
    }

    h3 {
      font-size: 1.6em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    p {
      margin-bottom: 20px;
      text-align: center;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Spezifische P-Styles für Links-/Rechtsbündig */
    .text-left {
      text-align: left;
    }

    .text-center {
      text-align: center;
    }

    a {
      color: var(--secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--primary-color);
      text-decoration: none;
    }

    ul,
    ol {
      margin-bottom: 20px;
      padding-left: 0;
      list-style: none;
    }

    li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 25px;
      /* Platz für Icon */
    }

    li i.list-icon {
      /* Klasse für Listen-Icons */
      position: absolute;
      left: 0;
      top: 5px;
      color: var(--secondary-color);
      font-size: 1.1em;
    }

    ol li {
      counter-increment: step-counter;
      padding-left: 35px;
    }

    ol li::before {
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      background-color: var(--secondary-color);
      color: var(--white);
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: inline-block;
      text-align: center;
      line-height: 25px;
      font-weight: 600;
      font-size: 0.9em;
    }

    /* --- Header / Hero --- */
    #hero {
      color: var(--white);
      text-align: center;
      padding: 100px 0;
    }

    #hero .subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      opacity: 0.9;
      font-weight: 300;
    }

    .cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--white);
      padding: 15px 30px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .cta-button i {
      margin-left: 8px;
    }

    /* Icon Abstand im Button */

    .cta-button:hover {
      background-color: #d35400;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    /* --- Problem / Lösung --- */
    #problem-solution {
      background-color: var(--white);
    }

    #problem-solution p {
      text-align: left;
    }

    #problem-solution ul li {
      text-align: left;
    }

    /* Listenelemente auch linksbündig */
    #problem-solution strong {
      color: var(--primary-color);
      font-weight: 600;
    }

    /* --- Pakete (NEUE STRUKTUR) --- */
    #pakete {
      background-color: var(--light-gray);
    }

    .preis-info {
      text-align: center;
      margin-bottom: 50px;
      font-size: 1.1em;
    }

    .preis-info strong {
      color: var(--accent-color);
      font-weight: 600;
    }

    .pakete-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .paket-karte {
      background-color: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 35px;
      width: calc(33.333% - 20px);
      min-width: 300px;
      max-width: 360px;
      box-shadow: 0 5px 15px var(--shadow-color);
      text-align: center;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .paket-karte:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .paket-karte.highlight {
      border-top: 5px solid var(--accent-color);
    }

    .beliebt-badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--accent-color);
      color: white;
      padding: 6px 18px;
      border-radius: 20px;
      font-size: 0.9em;
      font-weight: 600;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .beliebt-badge i {
      margin-right: 5px;
    }

    .paket-karte h3 {
      /* Paket Titel Styling */
      font-size: 1.6em;
      color: var(--primary-color);
      /* Geändert zu Primary Color */
      margin-bottom: 15px;
    }

    .paket-karte .preis {
      margin-bottom: 25px;
    }

    .paket-karte .preis-monatlich {
      font-size: 2.5em;
      font-weight: 700;
      color: var(--secondary-color);
      /* Geändert zu Secondary Color */
      display: block;
      margin-bottom: 5px;
    }

    .paket-karte .preis-periode {
      font-size: 0.5em;
      font-weight: 400;
      color: #6c757d;
    }

    .paket-karte .preis-jaehrlich {
      font-size: 1em;
      color: #6c757d;
      display: block;
      margin-top: 8px;
    }

    .paket-karte .preis-jaehrlich strong {
      font-weight: 600;
      color: var(--accent-color);
    }

    .paket-karte .preis-zusatz {
      font-size: 0.95em;
      color: var(--accent-color);
      display: block;
      margin-top: 8px;
      font-weight: 600;
    }

    .paket-karte .ideal-fuer {
      font-style: italic;
      color: #6c757d;
      margin-bottom: 25px;
      min-height: 45px;
      font-size: 0.95em;
      text-align: left;
      /* Links für bessere Lesbarkeit */
    }

    .paket-karte ul {
      text-align: left;
      margin-bottom: 25px;
      flex-grow: 1;
      padding-left: 0;
    }

    .paket-karte ul li {
      padding-left: 30px;
      font-size: 0.95em;
    }

    .paket-karte ul li i.list-icon {
      top: 4px;
      color: var(--secondary-color);
      font-size: 1em;
    }

    .paket-karte .hinweis {
      font-size: 0.85em;
      color: #6c757d;
      margin-top: auto;
      margin-bottom: 25px;
      text-align: left;
      /* Links für bessere Lesbarkeit */
    }

    .paket-karte .hinweis i {
      margin-right: 5px;
    }

    .paket-cta {
      margin-top: auto;
      align-self: center;
      background-color: var(--secondary-color);
      padding: 12px 25px;
    }

    .paket-cta:hover {
      background-color: #138496;
    }

    .highlight .paket-cta {
      background-color: var(--accent-color);
    }

    .highlight .paket-cta:hover {
      background-color: #d35400;
    }

    /* --- Warum Wir --- */
    #warum-wir {
      background-color: var(--white);
    }

    #warum-wir ul {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    #warum-wir li {
      padding-left: 35px;
      font-size: 1.05em;
      text-align: left;
    }

    #warum-wir li i.list-icon {
      color: var(--primary-color);
      top: 6px;
      font-size: 1.2em;
    }

    #warum-wir li strong {
      font-weight: 600;
      color: var(--text-color);
    }

    /* --- Über Uns (NEU) --- */
    #ueber-uns {
      background-color: var(--light-gray);
    }

    .ueber-uns-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }

    .ueber-uns-text {
      flex: 2;
      /* Mehr Platz für Text */
      min-width: 300px;
    }

    .ueber-uns-highlight {
      flex: 1;
      background-color: var(--primary-color);
      color: var(--white);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      min-width: 250px;
    }

    .ueber-uns-highlight .highlight-number {
      font-size: 3.5em;
      font-weight: 700;
      display: block;
      line-height: 1;
      margin-bottom: 10px;
      color: var(--secondary-color);
    }

    .ueber-uns-highlight .highlight-text {
      font-size: 1.1em;
      font-weight: 400;
    }

    #ueber-uns p {
      text-align: left;
    }

    /* Text linksbündig in dieser Sektion */

    /* --- Ablauf --- */
    #ablauf {
      background-color: var(--white);
    }

    #ablauf ol {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    #ablauf li {
      font-size: 1.05em;
      text-align: left;
    }

    /* --- Testimonials (NEU) --- */
    #testimonials {
      background-color: var(--light-gray);
    }

    .testimonials-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .testimonial-card {
      background-color: var(--white);
      border-left: 5px solid var(--secondary-color);
      padding: 25px 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px var(--shadow-color);
      width: calc(33.333% - 20px);
      min-width: 300px;
      max-width: 360px;
    }

    .testimonial-card .stars {
      color: #f0ad4e;
      /* Gelb für Sterne */
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .testimonial-text {
      font-style: italic;
      margin-bottom: 15px;
      color: #555;
      text-align: left;
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--secondary-color);
      text-align: left;
    }

    .testimonial-author span {
      display: block;
      font-weight: 300;
      font-size: 0.9em;
      color: #6c757d;
    }

    /* --- FAQ (NEU) --- */
    #faq {
      background-color: var(--white);
    }

    .faq-item {
      border-bottom: 1px solid var(--border-color);
      padding: 20px 0;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: 10px;
      cursor: pointer;
      /* Optional: Für Accordion-Effekt später */
      position: relative;
      padding-right: 25px;
      /* Platz für +/- Icon */
      text-align: left;
    }

    /* Optional: Icon für Accordion
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4em;
  color: var(--secondary-color);
}
.faq-item.active .faq-question::after {
  content: '-';
}
*/
    .faq-answer {
      /* display: none; Optional: Für Accordion-Effekt später */
      padding-left: 15px;
      color: #555;
      text-align: left;
    }

    /* Optional: Für Accordion-Effekt später
.faq-item.active .faq-answer {
   display: block;
}
*/

    /* --- Kontakt --- */
    #kontakt {
      background-color: var(--light-gray);
    }

    .kontakt-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 900px;
      margin: 30px auto 0 auto;
    }

    .kontaktdaten,
    #kontakt form {
      flex: 1;
      min-width: 300px;
    }

    .kontaktdaten {
      text-align: left;
    }

    .kontaktdaten p {
      text-align: left;
      margin-bottom: 15px;
      font-size: 1.05em;
    }

    .kontaktdaten strong {
      font-size: 1.1em;
      font-weight: 600;
      color: var(--primary-color);
      display: block;
      margin-bottom: 10px;
    }

    .kontaktdaten i {
      margin-right: 10px;
      color: var(--secondary-color);
      width: 20px;
      text-align: center;
    }

    .kontaktdaten a {
      color: var(--text-color);
    }

    .kontaktdaten a:hover {
      color: var(--secondary-color);
    }

    #kontakt form label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--primary-color);
    }

    #kontakt form input,
    #kontakt form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border: 1px solid var(--border-color);
      border-radius: 5px;
      font-size: 1em;
      font-family: "Poppins", sans-serif;
      transition: border-color 0.3s ease;
    }

    #kontakt form input:focus,
    #kontakt form textarea:focus {
      outline: none;
      border-color: var(--secondary-color);
      box-shadow: 0 0 5px rgba(23, 162, 184, 0.3);
    }

    #kontakt form button {
      width: auto;
      cursor: pointer;
    }


    .modal-box {
      line-height: 24px;
      padding: 20px 1rem;
      width: 100%;
      max-width: var(--xl);
      margin: 0 auto;
    }

    .modal-box p {
      text-align: left;
      max-width: 100%;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content {
      background-color: white;
      margin: 5% auto;
      padding: 15px;
      width: 95%;
      max-width: 500px;
      border-radius: 10px;
      position: relative;
    }

    @media screen and (max-width: 768px) {
      .modal-content {
        margin: 10% auto;
        width: 90%;
        padding: 12px;
      }

      .modal-box {
        padding: 15px 0.75rem;
      }
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.2rem;
      cursor: pointer;
    }

    /* --- Footer --- */
    footer {
      background-color: var(--primary-color);
      color: var(--light-gray);
      text-align: center;
      padding: 30px 0;
      font-size: 0.9em;
    }

    footer p {
      color: var(--light-gray);
      margin-bottom: 5px;
    }

    /* Footer Textfarbe anpassen */

    footer a {
      color: var(--light-gray);
      margin: 0 10px;
      text-decoration: underline;
    }

    footer a:hover {
      color: var(--white);
    }

    /* --- Responsivität --- */
    @media (max-width: 992px) {
      .paket-karte {
        width: calc(50% - 15px);
        max-width: none;
      }

      .testimonial-card {
        width: calc(50% - 15px);
      }

      h1 {
        font-size: 2.5em;
      }

      h2 {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2.2em;
      }

      h2 {
        font-size: 1.8em;
      }

      section,
      footer {
        padding: 60px 0;
      }

      .pakete-container {
        flex-direction: column;
        align-items: center;
      }

      .paket-karte {
        width: 90%;
        max-width: 450px;
        margin-bottom: 30px;
      }

      .testimonials-container {
        flex-direction: column;
        align-items: center;
      }

      .testimonial-card {
        width: 90%;
        max-width: 450px;
        margin-bottom: 30px;
      }

      .kontakt-container {
        flex-direction: column;
        gap: 30px;
      }

      .ueber-uns-container {
        text-align: center;
      }

      .ueber-uns-highlight {
        margin-top: 20px;
      }

      #ueber-uns p,
      #problem-solution p,
      #problem-solution ul li,
      .ideal-fuer,
      .hinweis,
      .faq-question,
      .faq-answer {
        text-align: center;
      }

      /* Texte zentrieren auf Mobil */
      li {
        padding-left: 0;
        text-align: center;
      }

      /* Listen zentrieren */
      li i.list-icon {
        display: none;
      }

      /* Icons in Listen ausblenden, wenn zentriert */
      ol li {
        padding-left: 0;
      }

      ol li::before {
        display: none;
      }

      /* Nummerierung ausblenden, wenn zentriert */

      .kontaktdaten {
        text-align: center;
        margin-bottom: 20px;
      }

      .kontaktdaten p {
        text-align: center;
      }
    }



    .testimonials-container {
      display: flex;
      gap: 30px;
      transition: transform 0.3s ease;
    }

    .testimonial-card {
      flex: 0 0 calc((100% - 60px) / 3);
      min-width: 300px;
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Carousel Styles */
    .carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .carousel-wrapper {
      overflow: hidden;
      position: relative;
    }

    .testimonials-container {
      display: flex;
      gap: 30px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 20px 0;
    }

    .testimonial-card {
      flex: 0 0 calc((100% - 90px) / 3.3);
      /* Show 3 cards and a peek */
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2563eb;
      font-size: 24px;
      transition: all 0.3s ease;
    }

    .scroll-btn:hover {
      background: #2563eb;
      color: #fff;
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    }

    .scroll-btn.left {
      left: 0;
    }

    .scroll-btn.right {
      right: 0;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 1.3);
      }

      .carousel-container {
        padding: 0 40px;
      }

      .scroll-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
      }
    }

    /* Carousel Styles */
    .carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      margin: 0;
    }

    .testimonials-container {
      display: flex;
      gap: 30px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      width: max-content;
      /* Prevent wrapping */
    }

    .testimonial-card {
      width: calc((1200px - 120px) / 3.3);
      /* Fixed width for 3.3 cards */
      min-width: 300px;
      flex: 0 0 auto;
      /* Prevent shrinking */
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2563eb;
      font-size: 24px;
      transition: all 0.3s ease;
    }

    .scroll-btn:hover {
      background: #2563eb;
      color: #fff;
      box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    }

    .scroll-btn.left {
      left: 0;
    }

    .scroll-btn.right {
      right: 0;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        width: calc(100vw - 80px);
        min-width: 280px;
      }

      .carousel-container {
        padding: 0 30px;
      }

      .scroll-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
      }
    }

    @media (max-width: 768px) {
      .carousel-container {
        padding: 0 20px;
      }

      .carousel-wrapper {
        overflow: visible;
      }

      .testimonials-container {
        width: 100%;
        flex-direction: column;
        transform: none !important;
      }

      .testimonial-card {
        width: 100%;
        min-width: 0;
        margin-bottom: 20px;
      }

      .scroll-btn {
        display: none;
      }
    }

    /* Modern Global Styles & Resets */
    :root {
      --primary-color: #005a9c;
      /* Dunkelblau */
      --secondary-color: #17a2b8;
      /* Türkis/Teal */
      --accent-color: #e87500;
      /* Orange als Akzent */
      --text-color: #343a40;
      /* Dunkles Grau */
      --light-gray: #f8f9fa;
      --border-color: #dee2e6;
      --shadow-color: rgba(0, 0, 0, 0.1);
      --dark-color: #1e293b;
      --light-color: #f8fafc;
      --text-color: #334155;
      --success-color: #22c55e;
      --light-grey-bg: #f1f5f9;
      --white-color: #ffffff;
      --box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --box-shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      --gradient-secondary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);


      /* Colors */
      --primary-color: #005a9c;
      --primary-light: #0077cc;
      --primary-dark: #004080;

      --secondary-color: #17a2b8;
      --secondary-light: #1fc8e3;
      --secondary-dark: #138496;

      --accent-color: #e87500;
      --accent-light: #ff8c00;
      --accent-dark: #cc6600;

      --text-color: #2c3e50;
      --text-light: #6c757d;
      --background-light: #f8f9fa;
      --background-white: #ffffff;
      --border-color: #e9ecef;

      /* Typography */
      --text-xs: 0.75rem;
      --text-sm: 0.875rem;
      --text-base: 1rem;
      --text-lg: 1.125rem;
      --text-xl: 1.25rem;
      --text-2xl: 1.5rem;
      --text-3xl: 1.875rem;
      --text-4xl: 2.25rem;
      --text-5xl: 3rem;

      --font-light: 300;
      --font-normal: 400;
      --font-medium: 500;
      --font-semibold: 600;
      --font-bold: 700;
      --font-extrabold: 800;

      /* Spacing */
      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 0.75rem;
      --space-4: 1rem;
      --space-5: 1.25rem;
      --space-6: 1.5rem;
      --space-8: 2rem;
      --space-10: 2.5rem;
      --space-12: 3rem;
      --space-16: 4rem;
      --space-20: 5rem;
      --space-24: 6rem;

      /* Shadows */
      --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

      /* Gradients */
      --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
      --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--white-color);
      color: var(--text-color);
      line-height: 1.8;
      font-size: 16px;
      overflow-x: hidden;
      letter-spacing: -0.01em;
    }

    .container {
      width: 95%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Inter', sans-serif;
      color: var(--dark-color);
      font-weight: 600;
      margin-bottom: 0.75em;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    h1 {
      font-size: 3.5em;
      margin-bottom: 0.5em;
    }

    h2 {
      font-size: 2.5em;
      margin-bottom: 1em;
      text-align: center;
    }

    p {
      margin-bottom: 1.5rem;
      font-size: 1.1em;
      line-height: 1.8;
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    a:hover {
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
    }

    section {
      padding: 100px 0;
    }

    section:nth-of-type(even) {
      background-color: var(--light-grey-bg);
    }

    .text-center {
      text-align: center;
    }

    .mb-0 {
      margin-bottom: 0 !important;
    }
    .mt-2 {
      margin-top: 1rem !important;
    }
    .mt-4 {
      margin-top: 2rem !important;
    }

    /* Updated Header and Navigation Styles */
    .site-header {
      background-color: var(--primary-color);
      backdrop-filter: blur(10px);
      padding: 20px 0;
      box-shadow: var(--box-shadow);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .site-header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .logo {
      font-size: 2em;
      font-weight: 800;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Hamburger Button Styles */
    .hamburger {
      display: none;
      cursor: pointer;
      padding: 10px;
      background: none;
      border: none;
      position: relative;
      z-index: 1001;
    }

    .hamburger-line {
      width: 25px;
      height: 2px;
      background-color: var(--white-color);
      margin: 6px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    /* Navigation Styles */
    .main-nav {
      transition: all 0.3s ease;
    }

    .main-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 0px;
    }

    .main-nav a {
      font-weight: 500;
      color: var(--white-color);
      padding: 8px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .main-nav-item {
        position: relative;
    }
    .main-nav-item.active::after {
      content: "";
      display: block;
      width: 50px;
      height: 2px;
      background: white;
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      margin: 0 auto;
    }
    .main-nav a:hover {
      color: var(--light-gray);
    }

    /* Mobile Navigation Styles */
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .main-nav {
        display: none;
        /* Hide by default on mobile */
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
      }

      .main-nav.active {
        display: block;
        /* Show when active */
        right: 0;
      }

      .main-nav ul {
        flex-direction: column;
        gap: 20px;
      }

      .main-nav li {
        margin: 0;
      }

      .main-nav a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1em;
      }

      /* Hamburger Animation */
      .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }

      /* Overlay */
      .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .nav-overlay.active {
        display: block;
        opacity: 1;
      }
    }

    /* Hero Section Styles */
    .hero-section {
      position: relative;
      min-height: 50vh;
      display: flex;
      align-items: start;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      padding: var\(--space-16\) 10px;
      overflow: hidden;
    }

    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      color: var(--background-white);
      padding: var(--space-8);
    }

    .hero-title {
      font-size: var(--text-5xl);
      font-weight: var(--font-extrabold);
      line-height: 1.2;
      margin-bottom: var(--space-6);
      color: var(--background-white);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      animation: fadeInUp 1s ease-out;
    }

    .hero-subtitle {
      font-size: var(--text-xl);
      line-height: 1.6;
      margin-bottom: var(--space-8);
      color: rgba(255, 255, 255, 0.9);
      animation: fadeInUp 1s ease-out 0.2s backwards;
    }

    .hero-cta {
      animation: fadeInUp 1s ease-out 0.4s backwards;
    }

    .testimonials-teaser-section h2,
    .final-cta-section h2 {
      color: var(--white-color);
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: var(--space-3);
      background-color: var(--accent-color);
      color: var(--background-white);
      padding: var(--space-4) var(--space-8);
      border-radius: 50px;
      font-weight: var(--font-semibold);
      font-size: var(--text-sm);
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(232, 117, 0, 0.3);
      cursor: pointer;
      border: none;
      margin: 0 auto;
      justify-content: center;
    }

    .cta-button:hover {
      background-color: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232, 117, 0, 0.4);
    }

    .cta-button i {
      transition: transform 0.3s ease;
    }

    .cta-button:hover i {
      transform: translateX(4px);
    }

    .hero-shape {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      line-height: 0;
      z-index: 1;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-title {
        font-size: var(--text-4xl);
      }

      .hero-subtitle {
        font-size: var(--text-lg);
      }

      .cta-button {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-base);
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: var(--text-3xl);
      }

      .hero-subtitle {
        font-size: var(--text-base);
      }
    }

    /* Pain Points Section */
    .painpoints-section {
      padding: var\(--space-16\) 10px;
      background-color: var(--background-light);
    }

    .painpoints-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-8);
      margin-top: var(--space-8);
    }

    .painpoint-item {
      background: var(--white-color);
      padding: var(--space-8);
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .painpoint-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .painpoint-item-icon {
      font-size: 2rem;
      margin-bottom: var(--space-4);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: var(--light-grey-bg);
      border-radius: 50%;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .painpoint-item:hover .painpoint-item-icon {
      transform: scale(1.1);
      box-shadow: var(--shadow-md);
    }

    .painpoint-item h3 {
      color: var(--primary-color);
      margin-bottom: var(--space-4);
      font-size: var(--text-xl);
    }

    /* Solution Section */
    .solution-section {
      padding: var\(--space-16\) 10px;
      background: var(--gradient-primary);
      color: var(--white-color);
      position: relative;
      overflow: hidden;
    }

    .solution-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.1;
    }

    .solution-section h2 {
      color: var(--white-color);
      margin-bottom: var(--space-6);
    }

    .solution-section p {
      font-size: var(--text-lg);
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto;
    }

    /* How It Works Section */
    .howitworks-section {
      padding: var\(--space-16\) 10px;
      background-color: var(--white-color);
    }

    .howitworks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--space-8);
      margin-top: var(--space-8);
    }

    .step-item {
      text-align: center;
      padding: var(--space-8);
      position: relative;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: var(--gradient-primary);
      color: var(--white-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-2xl);
      font-weight: var(--font-bold);
      margin: 0 auto var(--space-6);
      box-shadow: var(--shadow-md);
    }

    .step-item h3 {
      color: var(--primary-color);
      margin-bottom: var(--space-4);
    }

    /* Pricing Section */
    .pricing-section {
      padding: var\(--space-16\) 10px;
      background-color: var(--background-light);
    }

    .pricing-table {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-8);
      margin-top: var(--space-8);
    }

    .pricing-option {
      background: var(--white-color);
      border-radius: 16px;
      padding: var(--space-8);
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .pricing-option:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .pricing-option.recommended {
      border: 2px solid var(--primary-color);
      transform: scale(1.05);
    }

    .pricing-option.recommended:hover {
      transform: scale(1.05) translateY(-5px);
    }

    .badge {
      position: absolute;
      top: 20px;
      right: -35px;
      background: var(--accent-color);
      color: var(--white-color);
      padding: var(--space-2) var(--space-8);
      transform: rotate(45deg);
      font-size: var(--text-sm);
      font-weight: var(--font-bold);
    }

    .package-name {
      font-size: var(--text-2xl);
      font-weight: var(--font-bold);
      color: var(--primary-color);
      margin-bottom: var(--space-4);
    }

    .price-tag {
      font-size: var(--text-4xl);
      font-weight: var(--font-extrabold);
      color: var(--text-color);
      margin-bottom: var(--space-2);
    }

    .price-details {
      color: var(--text-light);
      margin-bottom: var(--space-6);
    }

    .features-list {
      list-style: none;
      padding: 0;
      margin: 0 0 var(--space-6);
    }

    .features-list li {
      padding: var(--space-3) 0;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-color);
    }

    .features-list li:last-child {
      border-bottom: none;
    }

    .monthly-service-fee {
      background: var(--background-light);
      padding: var(--space-4);
      border-radius: 8px;
      margin-bottom: var(--space-6);
      text-align: center;
    }

    .monthly-service-fee strong {
      display: block;
      font-size: var(--text-xl);
      color: var(--primary-color);
      margin-bottom: var(--space-2);
    }

    .min-duration {
      display: block;
      font-size: var(--text-sm);
      color: var(--text-light);
      margin-top: var(--space-2);
    }

    .testimonial-link {
      display: block;
      text-align: center;
      color: var(--primary-color);
      margin-bottom: var(--space-4);
      text-decoration: none;
      font-weight: var(--font-medium);
    }

    .testimonial-link:hover {
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .pricing-option.recommended {
        transform: none;
      }

      .pricing-option.recommended:hover {
        transform: translateY(-5px);
      }

      .pricing-table {
        grid-template-columns: 1fr;
      }
    }



    /* Enhanced Contact Form */
    .contact-form {
      background: var(--white-color);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--box-shadow);
      max-width: 600px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--dark-color);
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group textarea {
      width: 90%;
      padding: 16px;
      border: 2px solid var(--border-color);
      border-radius: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 1em;
      transition: all 0.3s ease;
    }

    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group textarea:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
      outline: none;
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }


    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-section h1 {
        font-size: 3em;
      }

      .hero-section .sub-headline {
        font-size: 1.3em;
      }

      section {
        padding: 80px 0;
      }

      .pricing-option.recommended {
        transform: none;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
      }

      .main-nav.active {
        right: 0;
      }

      .main-nav ul {
        flex-direction: column;
        gap: 20px;
      }

      .main-nav li {
        margin: 0;
      }

      .main-nav a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1em;
      }

      /* Hamburger Animation */
      .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
      }

      /* Overlay when menu is open */
      .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .nav-overlay.active {
        display: block;
        opacity: 1;
      }

      .hero-section {
        padding: 80px 0;
      }

      .hero-section h1 {
        font-size: 2.5em;
      }

      .hero-section .sub-headline {
        font-size: 1.2em;
      }

      h1 {
        font-size: 2.5em;
      }

      h2 {
        font-size: 2em;
      }

      section {
        padding: 60px 0;
      }

      .pricing-table {
        grid-template-columns: 1fr;
      }

      .pricing-option {
        width: 90%;
        max-width: 450px;
        margin: 0 auto 30px;
      }

      .pricing-option.recommended:hover {
        transform: translateY(-10px);
      }
    }

    /* Animations */
    .fade-in {
      animation: fadeIn 0.5s ease-in;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-image {
      height: 60px;
      width: auto;
      object-fit: contain;
    }

    .logo-image:hover {
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }

    /* Service Fee Benefits Section */
    .servicefee-benefits-section {
      padding: var\(--space-16\) 10px;
      background-color: var(--white-color);
    }

    .servicefee-benefits-section ul {
      list-style: none;
      padding: 0;
      margin: var(--space-8) 0;
    }

    .servicefee-benefits-section li {
      padding: var(--space-4);
      margin-bottom: var(--space-4);
      background: var(--background-light);
      border-radius: 8px;
      border-left: 4px solid var(--primary-color);
      transition: transform 0.3s ease;
    }

    .servicefee-benefits-section li:hover {
      transform: translateX(5px);
    }

    .servicefee-benefits-section li strong {
      color: var(--primary-color);
      display: block;
      margin-bottom: var(--space-2);
    }

    .highlight {
      background: var(--gradient-primary);
      color: var(--white-color);
      padding: var(--space-8);
      border-radius: 12px;
      margin-top: var(--space-8);
      box-shadow: var(--shadow-md);
    }

    /* Target Audience Section */
    .targetaudience-section {
      padding: var\(--space-16\) 10px;
      background-color: var(--background-light);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-8);
      margin-top: var(--space-8);
    }

    .audience-item {
      background: var(--white-color);
      padding: var(--space-8);
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .audience-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .audience-item h3 {
      color: var(--primary-color);
      margin-bottom: var(--space-4);
      font-size: var(--text-xl);
    }

    /* Testimonials Section */
    .testimonials-teaser-section {
      padding: var\(--space-16\) 10px;
      background: var(--gradient-primary);
      color: var(--white-color);
      position: relative;
      overflow: hidden;
    }

    .testimonials-teaser-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.1;
    }

    .testimonial-item-teaser {
      background: rgba(255, 255, 255, 0.1);
      padding: var(--space-8);
      border-radius: 12px;
      margin-bottom: var(--space-8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .testimonial-item-teaser p {
      font-size: var(--text-lg);
      line-height: 1.6;
      margin-bottom: var(--space-4);
    }

    .testimonial-item-teaser .author {
      font-weight: var(--font-semibold);
      font-style: italic;
      margin-bottom: 0;
    }

    .testimonials-teaser-section a {
      color: var(--white-color);
      text-decoration: none;
      font-weight: var(--font-semibold);
      padding: var(--space-3) var(--space-6);
      border: 2px solid var(--white-color);
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .testimonials-teaser-section a:hover {
      background: var(--white-color);
      color: var(--primary-color);
    }

    /* About Us Section */
    .about-us-brief-section {
      padding: var\(--space-16\) 10px;
      background-color: var(--white-color);
    }

    .about-us-brief-section p {
      max-width: 800px;
      margin: 0 auto;
      font-size: var(--text-lg);
      line-height: 1.8;
    }

    /* Final CTA Section */
    .final-cta-section {
      padding: var\(--space-16\) 10px;
      background: var(--gradient-primary);
      color: var(--white-color);
      position: relative;
      overflow: hidden;
    }

    .contact-form {
      background: var(--white-color);
      padding: var(--space-8);
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
      max-width: 600px;
      margin: var(--space-8) auto;
    }

    .form-group {
      margin-bottom: var(--space-6);
    }

    .form-group label {
      display: block;
      margin-bottom: var(--space-2);
      color: var(--text-color);
      font-weight: var(--font-medium);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary-color);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .audience-grid {
        grid-template-columns: 1fr;
      }

      .contact-form {
        margin: var(--space-8) var(--space-4);
      }

      .testimonial-item-teaser {
        padding: var(--space-6);
      }
    }

    .ueber-uns-highlight .highlight-text, .highlight h3, .highlight .preis-periode, .highlight .preis-jaehrlich, .highlight .ideal-fuer, .highlight .hinweis {
      color: white !important;
    }