/* Reset & Grundstil */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; font-family:'Helvetica Neue', Arial, sans-serif; overflow-x:hidden; }
body { background:#ffffff; color:#1a1a1a; }

/* Hero-Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1000px;
}

/* Hintergrundbild Layer */
.hero-bg {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
  transform: translateZ(-2px) scale(1.2);
  filter: brightness(0.8) saturate(1.1);
  transition: transform 0.5s ease-out;
}

/* Farb-Overlay */
.hero-overlay {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(180deg, rgba(255,111,0,0.3) 0%, rgba(76,175,80,0.1) 100%);
  mix-blend-mode: overlay;
}

/* Partikel- / Emoji-Layer */
.particles {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  pointer-events:none;
  overflow:hidden;
}
.particles span {
  position:absolute;
  font-size:1.5rem;
  animation: float 10s linear infinite;
  opacity:0.8;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-10vh) rotate(360deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px; /* Textbreite im Hero */
  padding: 0;
  text-align: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(50px);
  opacity: 0;
  animation: contentFade 1.2s forwards;
}

@keyframes contentFade {
  0% { opacity:0; transform:translateY(50px); }
  100% { opacity:1; transform:translateY(0); }
}

/* Überschriften Fade-Up Animation */
.hero h1 {
  font-size:3rem;
  color:#FF6F00;
  font-weight:700;
  line-height:1.2;
  margin-bottom:1rem;
  opacity:0;
  transform: translateY(20px);
  animation: headlineFadeUp 1s 0.5s forwards;
}

@keyframes headlineFadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero p {
  font-size:1.3rem;
  color:#333;
  margin-bottom:2rem;
  line-height:1.6;
  opacity:0;
  animation: subFade 1s 1s forwards;
}
@keyframes subFade {
  0% { opacity:0; transform:translateY(20px);}
  100% { opacity:1; transform:translateY(0);}
}

/* CTA Text */
.cta-text {
  font-size:1rem;
  color:#555;
  margin-bottom:1rem;
  opacity:0;
  animation: ctaFade 1s 1.5s forwards;
}
@keyframes ctaFade {
  0% { opacity:0; transform:translateY(15px);}
  100% { opacity:1; transform:translateY(0);}
}

/* CTA Button */
.cta-button {
  display:inline-block;
  padding:1rem 3rem;
  font-size:1.1rem;
  font-weight:600;
  color:#ffffff;
  background-color:#4CAF50;
  border: 2px solid #4CAF50;
  border-radius:30px;
  cursor:pointer;
  transition: all 0.3s ease, transform 0.2s ease;
  box-shadow:0 12px 30px rgba(0,0,0,0.3);
  position:relative;
  overflow:hidden;
  text-decoration: none;
}
a {
  text-decoration: none;
  color: inherit; /* übernimmt die Textfarbe des Buttons */
}
.cta-button:hover {
  background:#fff;
  color:#4CAF50;
  border: 2px solid #4CAF50;
}
.cta-button:active {
  transform: scale(0.98);
}

/* Ripple Effect */
.cta-button::after {
  content:'';
  position:absolute;
  width:100px; height:100px;
  background: rgba(76,175,80,0.3);
  display:block;
  top:50%; left:50%;
  pointer-events:none;
  transform: translate(-50%, -50%) scale(0);
  border-radius:50%;
  transition: transform 0.5s, opacity 1s;
}
.cta-button:focus::after, .cta-button:active::after {
  transform: translate(-50%, -50%) scale(2);
  opacity:0;
}

/* Parallax on scroll */
.hero-bg, .hero-content { will-change: transform; }

/* Responsive Hero */
@media (max-width:1024px) {
  .hero h1 { font-size:2.5rem; }
  .hero p { font-size:1.2rem; }
}
@media (max-width:768px) {
  .hero h1 { font-size:2rem; }
  .hero p { font-size:1rem; }
  .hero-content { padding:2rem; }
  .cta-button { width:100%; padding:1rem; }
}
@media (max-width:480px) {
  .hero h1 { font-size:1.6rem; }
  .hero p { font-size:0.95rem; }
}

/* Optional cinematic light flare */
.light-flare {
  position:absolute;
  width:400px; height:400px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  top:20%; left:10%;
  filter: blur(80px);
  animation: flareMove 15s infinite alternate;
}
@keyframes flareMove {
  0% { transform: translate(0,0) rotate(0deg);}
  100% { transform: translate(30px, -50px) rotate(360deg);}
}

/* ===================== PROBLEM SECTION ===================== */
#problem-section {
  background: #ffffff;
  position: relative;
  padding: 7rem 0;
  overflow: visible; /* war hidden */
  z-index: 1;
}

/* Background pattern (REMOVABLE) */
.problem-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://www.toptal.com/designers/subtlepatterns/patterns/dots.png');
  opacity: 0.07; /* adjust strength */
  z-index: 0;
} /* REMOVABLE */

.problem-container {
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

#problem-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

#problem-text-1, 
#problem-text-2 {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 800px;        /* Fließtext enger */
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

#problem-bullets {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* max. 3 pro Reihe bei breiten Screens */
  max-width: 900px;        /* Cards nicht vollbreit */
  margin-left: auto;
  margin-right: auto;
  gap: 1.5rem;
  justify-content: center;
}

.problem-bullet {
  background: #fdfdfd;
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  font-size: 1.15rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}
.problem-bullet:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.problem-bullet .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Wave Divider Top */
.problem-wave-top {
  position: absolute;   /* wie Bottom */
  top: 0;               /* oben */
  left: 0;              /* links bündig */
  width: 100%;          /* volle Breite */
  height: 150px;
  margin-bottom: 100x;
  transform: rotate(180deg);
  z-index: 0;
}



/* Wave Divider Bottom */
.problem-wave-bottom {
  position: absolute;
  bottom: -40px; /* etwas außerhalb */
  left: 0;
  width: 100%;
  height: 150px;
  background: url('https://www.svgrepo.com/show/276264/wave.svg') repeat-x;
  background-size: cover;
  z-index: 0;
}


/* Bulletpoints Fade-Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-play-state: paused; /* wird durch JS aktiviert */
}

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

/* Responsive Problem */
@media (max-width: 992px) {
  #problem-title { font-size: 2.2rem; }
  #problem-text-1, #problem-text-2 { font-size: 1.05rem; }
  .problem-bullet { font-size: 1.05rem; }
}
@media (max-width: 768px) {
  #problem-title { font-size: 1.9rem; }
  .problem-bullet { padding: 1rem; font-size: 1rem; }
}
@media (max-width: 480px) {
  #problem-title { font-size: 1.6rem; }
  #problem-text-1, #problem-text-2 { font-size: 0.95rem; }
  .problem-bullet { font-size: 0.95rem; }
}

/* ===================== SOLUTION SECTION ===================== */
#solution-section {
  background: #ffffff;
  position: relative;
  padding: 7rem 0;
  overflow: visible;
  z-index: 1;
}

.solution-container {
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

#solution-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin-top: -180px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

#solution-text-1, #solution-text-2 {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 800px;       /* Fließtext enger */
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

#solution-bullets {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* max. 3 pro Reihe */
  max-width: 900px;       /* Cards nicht vollbreit */
  margin-left: auto;
  margin-right: auto;
  gap: 1.5rem;
  justify-content: center;
}

.solution-cta-text {
  font-size: 1rem;
  color: #555;
  margin: 2.5rem 0 1rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

/* Reuse problem-bullet for consistency */
#solution-section .problem-bullet {
  opacity: 0;
  transform: translateY(20px);
}

/* Wave dividers */
.solution-wave-top, .solution-wave-bottom {
  position: absolute;
  width: 100%;
  height: 150px;
  z-index: 0;
}

.solution-wave-top { top: 0; left: 0; }
.solution-wave-bottom { bottom: -40px; left: 0; }

/* Responsive Solution */
@media (max-width: 992px) {
  #solution-title { font-size: 2.2rem; }
  #solution-text-1, #solution-text-2 { font-size: 1.05rem; }
  .problem-bullet { font-size: 1.05rem; }
}
@media (max-width: 768px) {
  #solution-title { font-size: 1.9rem; }
  .problem-bullet { padding: 1rem; font-size: 1rem; }
}
@media (max-width: 480px) {
  #solution-title { font-size: 1.6rem; }
  #solution-text-1, #solution-text-2 { font-size: 0.95rem; }
  .problem-bullet { font-size: 0.95rem; }
}

/* ===================== TRUST / AUTHORITY SECTION ===================== */
#trust-section {
  background: #f9fafb;
  position: relative;
  padding: 6rem 0;
  text-align: center;
}

.trust-container {
  max-width: 80%;
  margin: 0 auto;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.trust-text {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 800px;      /* Fließtext enger */
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* bis zu 3 Spalten */
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1000px;     /* Cards nicht vollbreit */
  margin-left: auto;
  margin-right: auto;
}

.trust-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

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

.trust-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #FF6F00;
}

.trust-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* CTA Text */
.trust-cta-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

/* Responsive Trust */
@media (max-width: 992px) {
  .trust-title { font-size: 2.2rem; }
  .trust-text { font-size: 1.05rem; }
}
@media (max-width: 768px) {
  .trust-title { font-size: 1.9rem; }
  .trust-card h3 { font-size: 1.15rem; }
  .trust-card p { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .trust-title { font-size: 1.6rem; }
  .trust-text { font-size: 0.95rem; }
  .trust-card { padding: 1.5rem 1rem; }
  .trust-card h3 { font-size: 1.05rem; }
  .trust-card p { font-size: 0.9rem; }
}

/* ===================== FEATURE HIGHLIGHT SECTION ===================== */
#feature-section {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.feature-container {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Title & Subtitle */
.feature-title {
  font-size: 3rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.feature-subtitle {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 4rem;
  line-height: 1.8;
  max-width: 800px;        /* Fließtext enger */
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

/* Grid Layout */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 oben, 3 unten bei 6 Cards */
  gap: 2rem;
  margin-bottom: 4rem;
  perspective: 1000px;
  max-width: 1100px;       /* Cards nicht vollbreit */
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* Feature Card */
.feature-card {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(40px) rotateX(5deg);
  transition: all 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px) rotateX(0deg) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: #FF6F00;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* CTA Text */
.feature-cta-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

/* Optional cinematic floating circles */
.feature-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  filter: blur(40px);
  animation: floatCircle 20s linear infinite;
}

@keyframes floatCircle {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.3); }
  100% { transform: translate(0,0) scale(1); }
}

/* Responsive Feature Titles */
@media (max-width: 1024px) {
  .feature-title { font-size: 2.5rem; }
  .feature-subtitle { font-size: 1.15rem; }
}
@media (max-width: 768px) {
  .feature-title { font-size: 2rem; }
  .feature-subtitle { font-size: 1rem; }
  .feature-card h3 { font-size: 1.3rem; }
  .feature-card p { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .feature-title { font-size: 1.7rem; }
  .feature-subtitle { font-size: 0.95rem; }
  .feature-card { padding: 1.5rem 1rem; }
  .feature-card h3 { font-size: 1.1rem; }
  .feature-card p { font-size: 0.9rem; }
}

/* ===================== CINEMATIC TESTIMONIALS ===================== */
#cinematic-testimonials {
  background-color: #ffffff;
  padding: 80px 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: #1b1b1b;
  position: relative;
  overflow: hidden;
}

#cinematic-testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#cinematic-testimonials p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px; /* Fließtext begrenzen */
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.awards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* Abstand zwischen den Logos */
  margin: 50px 0;
  flex-wrap: wrap; /* für mobile Geräte */
}

.awards-container img {
  width: 120px; /* größer als vorher */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.15)); /* leichte Schatten für Tiefe */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.awards-container img:hover {
  transform: translateY(-5px) scale(1.03);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2));
}

.testimonial-container {
  overflow: hidden; /* wichtig für die Endlosschleife */
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px; /* Abstand zwischen den Cards */
  transition: none; /* JS übernimmt Transition (Mobile) */
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 auto; /* verhindert, dass die Karten schrumpfen */
  min-width: 300px;
  max-width: 350px;
  background: #f8f8f8;
  padding: 30px 25px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Sterne grün */
.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testimonial-card .author {
  font-weight: bold;
  font-size: 0.9rem;
  color: #555;
}

.testimonial-cta {
  text-align: center;
  margin-top: 40px;
}

.testimonial-cta button {
  background-color: #28a745;
  color: #fff;
  border: 2px solid #4CAF50;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
} 
a {
  text-decoration: none;
  color: inherit; /* übernimmt die Textfarbe des Buttons */
}

.testimonial-cta button:hover {
  background-color: #fff;
  color: #28a745;
  border:2px solid #4CAF50;
}

/* Keyframes für Endlosschleife */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Fade Animations (global) */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s forwards; }
.fade-in { opacity: 0; animation: fadeIn 1s forwards; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-track { gap: 20px; }
  .testimonial-card { min-width: 250px; max-width: 300px; }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-track {
    flex-wrap: nowrap;
    transition: transform 0.6s ease-in-out; /* Animation fürs Swipen */
    gap: 0; /* keine Lücke zwischen den Cards */
  }
  .testimonial-card {
    min-width: 100%; /* volle Breite → nur eine sichtbar */
    max-width: 100%;
  }
}

/* Desktop/Tablet → Endlosschleife Animation */
@media (min-width: 769px) {
  .testimonial-track {
    animation: scroll-left 40s linear infinite;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2652a5 0%, #2a5298 100%);
  color: #fff; 
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden; 
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 50%);
  animation: pulseBackground 50s infinite linear;
}

@keyframes pulseBackground {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-headline {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-subheadline {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.cta-button {
  background-color: #28a745;
  color: #fff;
  border:2px solid #4CAF50;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
a {
  text-decoration: none;
  color: inherit; /* übernimmt die Textfarbe des Buttons */
}

.cta-button:hover {
  background-color: #fff;
  color: #28a745;
  border:2px solid #4CAF50;
}

/* ===================== FAQ Section ===================== */
#faq-section {
  background-color: #ffffff;
  padding: 80px 0;
  max-width: 80%;         /* Sektion nicht vollbreit */
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.faq-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333333;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.faq-header p {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 50px;
  max-width: 800px;       /* Fließtext enger */
  margin-left: auto;
  margin-right: auto;
}

/* Accordion Styles */
.faq-accordion {
  text-align: left;
  border-radius: 12px;
  max-width: 900px;       /* Inhalt eng und zentriert */
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  background-color: #f9f9f9;
  border: none;
  outline: none;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background-color: #f1fdf4;
}

.faq-icon {
  font-size: 1.5rem;
  color: #28a745; /* grün für cineamtic Highlight */
  transition: transform 0.5s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background-color: #ffffff;
}

.faq-answer p {
  font-size: 1rem;
  color: #444444;
  padding: 15px 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 25px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA Button */
.faq-cta {
  margin-top: 50px;
}

.faq-cta p {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 20px;
  max-width: 800px;      /* Fließtext enger */
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: #28a745;
  color: #fff;
  border: 2px solid #4CAF50;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight:600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #fff;
  color: #28a745;
  border: 2px solid #4CAF50;
}
