:root {
  --color-light:        #F5F5F5;  /* Basiston */
  --color-light-muted:  #F5F5F5;  /* gleich wie Basiston, da kein zweiter Ton definiert */
  --color-primary:      #00512B;  /* Primärfarbe */
  --color-secondary:    #D4AF37;  /* Akzentfarbe */
  --color-dark:         #3A3A3A;  /* Textfarbe */
}


html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--color-primary); /* dunkelblauer Hintergrund */
  color: var(--color-light);            /* Standard-Schriftfarbe */
}

/* === KOPF SECTION START === */

.site-header {
  background: var(--color-primary);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 20px 20px 20px 0px
}


.header-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  height: 40px;
}

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

.main-nav a {
  color: var(--color-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.8;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-secondary);
  background-color: var(--color-light);
  border: 2px solid var(--color-secondary);
  border-radius: 0.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease, background 0.3s ease;
}

.cta-button::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  transition: all 0.3s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  color: var(--color-light);
}


@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
  }

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

  .cta-button {
  font-size: 0.95rem;
  padding: 10px 18px;
  font-weight: 600; /* falls zu fett: auf 500 reduzieren */
  line-height: 1.2;
}

  .logo {
    height: 32px;
  }
}









/* === KOPF SECTION END === */



/* ================================================================== Header SECTION STart === */
/* ================================================================== Header SECTION STart === */


.hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 80px 0;
}



.content-wrapper {
  max-width: 1200px;
  margin: 100px 150px 40px 150px;
  padding: 0;
  box-sizing: border-box;
  text-align: left;
}

.pre-headline {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-light-muted);
}


.custom-line {
  height: 2px;
  width: 1150px;
  background-color: var(--color-secondary); /* Akzentfarbe verwenden */
  margin: 20px 0;
  border-radius: 2px;
}



.main-headline {
  font-size: 3.0rem;
  font-weight: 800;
  line-height: 1.3;
      color: var(--color-light);
}

.highlight1imh {
  color: inherit; /* Text bleibt weiß */
  text-decoration: underline;
  text-decoration-color: var(--color-secondary); /* nur Unterstrich grün */
  text-underline-offset: 6px;
  font-weight: 600; /* optional etwas kräftiger */
}

.bullet-points {
  list-style: none;
  padding: 0;
      color: var(--color-light);
}

.bullet-points li {
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.cta-button {
  background-color: var(--color-primary);
  color: var(--color-light);
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}


.cta-button:hover {
  background-color: var(--color-secondary); /* Akzentfarbe übernehmen */
}

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

  .content-wrapper {
    margin: 40px 20px;
    padding: 0 10px;
    text-align: left;
  }

  .pre-headline {
    font-size: 1rem;
  }

  .custom-line {
    width: 100%;
    margin: 12px 0;
  }

  .main-headline {
    font-size: 1.8rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .bullet-points li {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }

 .cta-button {
    font-size: 0.85rem;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 8px;
    line-height: 1.2;
  }
}




/* ================================================================== Problem SECTION STart === */
/* ================================================================== Problem SECTION STart === */



.problem-section {
  background-color: var(--color-light);
  padding: 80px 0;
   width: 100vw;
   margin-left: calc(-50vw + 50%);  
}

.problem-wrapper {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.headlineproblem-xl {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 60px;
}

.problem-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}


.card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 30px 40px;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: var(--color-primary);
  line-height: 1.6;
}




/* === PROBLEM SECTION END === */

/* =  IHK START === */

.IHK {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 80px 0;

  width: 100vw;
  margin-left: calc(-50vw + 50%);
}


.ihk-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 60px;
}

.ihk-content {
  flex: 1;
  max-width: 60%;
}

.headlineproblemihk-xl {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.headlineihk-xl {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.highlighted-title {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--color-secondary);
}


.ihk-subline {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.customlineihk {
  width: 200px;
  height: 2px;
  background-color: var(--color-secondary);
  margin: 12px 0 20px 0;
}

.headline-md {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.text {
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 30px;
}

.ihk-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.ihk-benefits li {
  background-color: var(--color-secondary);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-dark);
}

.ihk-zertifikate {
  flex-shrink: 0;
  max-width: 350px;
}

.ihk-zertifikate img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* sanfter, realistischer Schatten */
  padding: 0; /* wichtig: kein künstlicher Abstand */
  display: block;
}

/* Responsiveness */
@media (max-width: 768px) {
  .ihk-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }

  .ihk-content,
  .ihk-zertifikate {
    max-width: 100%;
  }

  .ihk-zertifikate {
    margin-top: 30px;
  }
}


/* === Layout: Wrapper & Section === */ 

/* === ANALYSE SEKTION === */

.solution-section {
  background-color: var(--color-light);
  padding: 80px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.solution-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* Headline */
.headline-solution-xl {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 60px;
}

/* Highlight (z. B. "Analyse") */
.highlighted-title {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 6px;
  font-style: italic;
  font-weight: 600;
}

/* Grid Layout */
.solution-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}


.solution-card {
  width: 300px;              /* feste, einheitliche Breite */
  max-width: 100%;
  flex-shrink: 0;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}





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

/* Bild-Wrapper */
.image-wrapper {
  height: 260px; /* sweet spot */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}


.image-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}


/* Inhalt */
.card-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-text h3,
.solution-card h3 {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 16px;
  color: var(--color-primary);
  line-height: 1.6;
}



/* ================================================================== Experten Abteil === */
/* ================================================================== Experten Abteil === */


.experten-section {

width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 100px;

}

.experten-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80 40px;
  flex-wrap: wrap; /* für mobile fallback */
}


/* === Überschrift === */



.experten-headline {
   font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-light);
  margin-bottom: 32px;
}



.linieexperte {
  width: 800px;
  height: 2px;
  background-color: var(--color-secondary);
  margin: 20px 0;
}




.experten-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-left: 0px; /* statt 120px */
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--color-light);
  text-align: left; /* ergänzt für saubere Ausrichtung */
}



/* === Bullet-Liste === */
.experten-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experten-bullets li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--color-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.experten-bullets li strong {
  font-weight: 700;
}

/* === Rechte Spalte: Bild === */
.experten-image {
  flex-shrink: 0;
  max-width: 500px;
}

.experten-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


@media (max-width: 768px) {
  .experten-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
  }

  .experten-headline {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .linieexperte {
    width: 100%;
    margin: 16px 0;
  }

  .experten-text {
    font-size: 1.05rem;
    padding: 0;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .experten-bullets li {
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 8px;
  }

  .experten-image {
    max-width: 100%;
    margin-top: 20px;
  }
}


/* ================================================================== Vergelich Abteil === */
/* ================================================================== Vergelich Abteil === */



.vergleich-section {
  background: var(--color-light);
  padding: 60px 20px 160px 20px;
  font-family: 'Inter', sans-serif;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 100px;
}

.vergleich-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.vergleich-headline {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: var(--color-primary);
}

.highlighted-title {
  color: var(--color-secondary);
  font-weight: 800;
}

.vergleich-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.vergleich-column {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.vergleich-column.highlight {
  border: 2px solid var(--color-secondary);
}

.headline-vers,
.headline-care {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: var(--color-primary);
}

.vergleich-column.highlight .headline-care {
  color: var(--color-secondary);
}

.vers-text p,
.care-text p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--color-primary);
}

/* Entfernt Symbol-Generierung via CSS */
.vers-text p::before,
.care-text p::before {
  content: none !important;
}


@media (max-width: 768px) {


  .vergleich-section {
    padding: 40px 16px 80px 20px;
    margin-bottom: 60px;

  }

  .vergleich-wrapper {
  max-width: 1200px;
  margin-right: 40px;
}

  .vergleich-headline {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 32px;
    text-align: left;

  }

  .vergleich-grid {
    flex-direction: column;
    gap: 24px;
  }

  .vergleich-column {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .headline-vers,
  .headline-care {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-align: left;
  }

  .vers-text p,
  .care-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 10px;
  }
}



/* ================================================================== FAQ Abteil === */
/* ================================================================== FAQ Abteil === */

.faq-section {
  margin-bottom: 80px; /* Abstand zum Footer */
}

 body {
      background-color: var(--color-primary);
      font-family: sans-serif;
      color: #000;
      padding: 2rem;
    }

   .faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 100px; /* <-- DAS funktioniert */
}


    .faq-headline {
      color: #fff;
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .faq-item {
      background: #fff;
      border-radius: 12px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
    }

    .faq-question {
      font-weight: bold;
      margin: 0;
      font-size: 1.1rem;
    }

    .faq-icon {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      opacity: 0;
      padding: 0 1.5rem;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
      font-size: 0.95rem;
      color: #333;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      opacity: 1;
      padding: 1rem 1.5rem;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg); /* "+" wird zu "×" */
    }

/* ================================================================== FOOTER Abteil === */
/* ================================================================== FOOTER Abteil === */

/* === FOOTER SECTION === */

.footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 80px 40px 60px;
  font-size: 0.95rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: var(--color-light);
  text-decoration: none;
  border-bottom: 2px solid var(--color-secondary);
  transition: all 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 48px;
  margin: 1rem 0;
  display: block;
}

.footer-contact-mail {
  color: var(--color-light);
  text-decoration: none;
  border-bottom: 1px dotted var(--color-secondary);
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #bbb;
  text-align: center;
  line-height: 1.6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* === Logo zentriert auf Mobilgeräten === */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 80px;
  }


  .footer-column {
    width: 100%;
  }

  .footer-logo {
    margin: 1rem auto;
  }
}





.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* halbtransparenter Hintergrund */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background-color: var(--color-light);
  color: var(--color-dark);
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh; /* sorgt für scrollbares Modal */
  overflow-y: auto;  /* aktiviert vertikales Scrollen */
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.6;
}

.modal-content h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.modal-content p {
  margin-bottom: 0;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: var(--color-dark);
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.hidden {
  display: none;
}


.modal-content form {
  margin-top: 1rem;
}

.modal-content input {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.modal-content button {
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

.modal-content button:hover {
  background-color: var(--color-primary);
}