body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  overflow-x: hidden; 
}

/* -------------------------------------- */
/* KEYFRAMES & HEADER                     */
/* -------------------------------------- */
@keyframes draw-underline {
    from {
        width: 0; 
    }
    to {
        width: 100%; 
    }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00529B;
  padding: 1rem 2rem;
  font-size: 1.5rem;
}

.logo {
  font-weight: bold;
}

.white {
  color: white;
}

.orange {
  color: #F39200;
}

.book-btn {
  background-color: #F39200;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.book-btn:hover {
  background-color: #e07f00;
}

.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background-color: white;
}

.hero h1 {
  font-size: 3rem;
  color: #00529B;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: 3rem;
  color: #00529B;
  text-decoration: none; 
}

.word {
  position: relative; 
  display: inline-block; 
}

.word.animate::after {
  content: '';
  position: absolute;
  bottom: -5px; 
  left: 0;
  height: 3px; 
  background-color: #00529B; 
  animation: draw-underline 3.0s cubic-bezier(0.19, 1, 0.22, 1) forwards; 
}

/* -------------------------------------- */
/* NEU: CTA-BLOCK STYLING                 */
/* -------------------------------------- */
.cta-block {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 3rem 2rem;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    flex: 1 1 50%;
    text-align: left;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: #00529B;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.cta-text .subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.cta-image-container {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
}

.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-btn {
    /* Orange Button-Stil aus .btn übernommen, aber etwas größer */
    padding: 1rem 2rem;
    font-size: 1.1rem;
}


/* -------------------------------------- */
/* PAKETE (Unverändert)                   */
/* -------------------------------------- */
.pakete {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.paket-box {
  background-color: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 340px;
  text-align: center;
}

.paket-box h3 {
  color: #00529B;
  margin-top: 0;
}

.paket-box .preis {
  font-size: 1.5rem;
  color: #F39200;
  margin: 0.5rem 0;
}

.paket-box ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.paket-box li {
  margin: 0.5rem 0;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #F39200;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn:hover {
  background-color: #e07f00;
}

/* -------------------------------------- */
/* ÜBER MICH (Unverändert)                */
/* -------------------------------------- */

.ueber-mich {
  background-color: #fff;
  padding: 2rem;
  text-align: center;
}

.ueber-box {
  max-width: 900px; 
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
  display: flex; 
  gap: 2rem;
}

.ueber-profilbild {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    object-fit: cover;
    flex-shrink: 0; 
    border: 3px solid #00529B; 
}

.ueber-text {
    flex-grow: 1;
}

/* -------------------------------------- */
/* STICKY TRUST SEAL (Unverändert)        */
/* -------------------------------------- */
.trust-seal-container {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    width: 100px;
    height: 100px;
    background-color: #F39200; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4); 
    z-index: 100; 
    transition: transform 0.2s ease;
}

.trust-seal-container:hover {
    transform: scale(1.05);
}

.trust-text {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}


/* -------------------------------------- */
/* TESTIMONIALS (Unverändert)             */
/* -------------------------------------- */
.testimonials {
    background-color: #00529B; 
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.testimonial-content h3 {
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-box {
    background-color: rgba(255, 255, 255, 0.1); 
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.testimonial-box p {
    font-style: italic;
    margin-top: 0;
}

.testimonial-box span {
    display: block;
    text-align: right;
    font-weight: bold;
    color: #F39200;
}

/* -------------------------------------- */
/* VORTEILE & FAQ (Unverändert)           */
/* -------------------------------------- */
.vorteile {
  padding: 2rem;
  text-align: center;
}

.vorteil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.faq-section {
    padding: 2rem;
    text-align: center;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    background-color: #00529B;
    color: white;
    padding: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.accordion-header:hover {
    background-color: #004481;
}

.accordion-content {
    padding: 1rem;
    background-color: #f9f9f9;
    text-align: left;
    display: none; 
}

.accordion-content.active {
    display: block; 
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg); 
}


/* -------------------------------------- */
/* FOOTER & RECHTLICHE LINKS (Unverändert)*/
/* -------------------------------------- */
footer {
  background-color: #00529B;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

footer .impressum {
  margin-bottom: 1rem;
}

.legal-links a {
    color: white;
    text-decoration: underline;
    margin: 0 0.5rem;
}

/* -------------------------------------- */
/* MODAL STYLING (Unverändert)            */
/* -------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 1000; 
    padding: 1rem; 
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid #F39200; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 450px;
    width: 100%;
    position: relative;
}

.legal-modal-content {
    max-width: 700px;
    max-height: 90vh; 
    overflow-y: auto; 
    text-align: left;
}

.modal-content h3 {
    color: #00529B;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #F39200;
}

.modal-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #00529B; 
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.modal-btn:hover {
    background-color: #004481;
}

/* -------------------------------------- */
/* MOBILE OPTIMIERUNGEN                   */
/* -------------------------------------- */

@media (max-width: 768px) {
  /* ... (Standard Mobile Anpassungen) ... */
  header {
    flex-direction: column; 
    padding: 1rem;
    gap: 0.5rem; 
  }

  .logo {
    font-size: 1.25rem; 
  }

  .header-right {
      margin-top: 0.5rem;
  }
  
  .book-btn {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
  }

  .hero {
    padding: 3rem 1rem 1.5rem;
  }
  
  .hero h1, .hero h2 {
    font-size: 2rem; 
  }

  /* NEU: CTA Block Mobile Anpassung */
  .cta-block {
      /* Wichtig für Mobile: Bild (im 2. Div) kommt nach vorne (column-reverse) */
      flex-direction: column-reverse; 
      padding: 2rem 1rem;
      gap: 1.5rem;
  }
  
  .cta-text {
      text-align: center;
  }

  .cta-text h2 {
      font-size: 2rem;
  }
  
  .pakete, .vorteile, .faq-section {
    padding: 1rem;
    gap: 1rem;
  }
  
  .paket-box {
    width: 100%; 
    max-width: 400px; 
    margin: 0 auto;
    padding: 1.5rem;
  }

  .ueber-mich {
    padding: 1rem;
  }

  .ueber-box {
      flex-direction: column; 
      gap: 1rem;
  }
  
  .ueber-profilbild {
      margin: 0 auto;
  }

  .trust-seal-container {
      bottom: 10px; 
      right: 10px; 
      width: 90px;
      height: 90px;
  }
  
  .trust-text {
      font-size: 0.7rem;
  }

  .vorteil-grid, .testimonial-grid {
    grid-template-columns: 1fr; 
    gap: 1rem;
  }
  
  .testimonials {
      padding: 1.5rem 1rem;
  }

  footer {
    padding: 1rem 0.5rem;
  }

  footer .impressum {
      text-align: left;
      margin-left: 1rem;
  }
}