/* ============================================================
   custom.css  –  Dattle Website Styles
   Stand: 24.04.2025
   ============================================================ */

/* ========= Global-Reset (gegen Überbreite) ================= */
*,*::before,*::after{box-sizing:border-box}
html,body{overflow-x:hidden}

/* ===== Grundlegendes Layout ===== */
body.body-theme{
  background:#EFF8FF;
  color:#1C4587;
  font-family:sans-serif;
  margin:0;
  padding:0;
}

/* 🔹 Utility-Klasse */
.hidden{display:none!important}


/* ============================================================
   Links
   ============================================================ */
a,
a:visited,
a:active,
.link-learn,
.logo a,
.footer-nav a,
.nav-main a,
.nav-dropdown-content a,
.mobile-menu a{
  text-decoration:none;
  color:#1C4587;
  cursor:pointer;
}
a:hover,
.link-learn:hover,
.logo a:hover,
.footer-nav a:hover,
.nav-main a:hover,
.nav-dropdown-content a:hover,
.mobile-menu a:hover{
  text-decoration:none;
}

/* für Link-Buttons */
.btn-link{all:unset;display:inline-block;cursor:pointer}

/* ============================================================
   Header
   ============================================================ */
.header{
  background:#1C4587;
  color:#fff;
  position:sticky;top:0;z-index:1000;
  box-shadow:0 2px 5px rgba(0,0,0,.1);
}
.header-container{
  display:flex;justify-content:space-between;align-items:center;
  padding:1rem 1.5rem;
}
.logo span{color:#fff;font-size:1.8rem;font-weight:bold}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header.hide {
  transform: translateY(-100%);
}

/* Desktop-Navi ------------------------------------------------*/
/* Desktop-Navi – Elegant Glassy Look ------------------------------------------------*/
.nav-main a {
  margin-left: 1.5rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-main a:hover {
  color: #5EB9FC;
}

/* Dropdown Wrapper */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Menü */
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.95); /* halbtransparent */
  backdrop-filter: blur(8px); /* Weichzeichner */
  border-radius: 0.75rem;
  padding: 0.5rem 1rem 0.5rem 0.25rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: fadeIn 0.3s ease-out;
  transform-origin: top;
}

/* Sichtbar bei Hover */
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

/* Menüeinträge */
.nav-dropdown-content a {
  display: block;
  padding: 0.5rem 0.5rem;
  color: #1C4587 !important;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}

.nav-dropdown-content a:hover {
  background: #DBEEFE;
  color: #2A7BC8;
  transform: translateX(4px);
}

/* Fade-in Effekt */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scaleY(0.95);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}


/* ============================================================
   Hero (Animierter Parallax)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center var(--parallax, 0px);
  transform: translateZ(0);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero span {
  color: #5EB9FC;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}


/* ============================================================
   CTA (Animierter Parallax)
   ============================================================ */
.hero-cta {
  background: linear-gradient(to bottom, #F9FBFF 0%, #DBEEFE 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: #1C4587;
}

.hero-cta .hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1C4587;
}

.hero-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #1C4587;
}


.hero-cta h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-cta span {
  color: #5EB9FC;
}

.hero-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
a.btn-primary {
  display: inline-block;
  background: linear-gradient(to bottom, #399AF8, #2a7bc8);
  color: white !important; /* 💥 immer weiß – egal wo */
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
              0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-decoration: none;
}

a.btn-primary:hover {
  background: linear-gradient(to bottom, #2a7bc8, #2265a8);
  color: white !important; /* 💥 bleibt auch beim Hover weiß */
  transform: scale(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 8px 20px rgba(0, 0, 0, 0.15);
}



/* ============================================================
   Fade-in
   ============================================================ */
/* Sanftes Einblenden */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {          /* per JS nach Bedarf anhängen */
  opacity: 1;
  transform: translateY(0);
}
/* ============================================================
   Beniftits
   ============================================================ */
/* Spezieller Hintergrund für diesen Abschnitt */
.benefits {
  background:#EFF8FF;
}

/* Liste ohne Bullets – im Grid angeordnet */
.benefit-list {
  list-style:none;
  margin:2rem auto 0;
  padding:0;
  max-width:800px;
  display:grid;
  gap:2rem;
}

@media(min-width:600px){
  .benefit-list { grid-template-columns:repeat(3,1fr); }
}

/* Einzelner Vorteil */
.benefit-list li {
  background:#DBEEFE;
  border-radius:1rem;
  padding:2rem 1rem;
  text-align:center;
  box-shadow:0 4px 12px rgba(28,69,135,.08);
}

/* Icon-Styling (Font Awesome) */
.benefit-list i {
  font-size:2rem;
  color:#399AF8;
  margin-bottom:.5rem;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor:pointer;
}

.benefit-list i {
  font-size:2rem;
  color:#399AF8;
  margin-bottom:.5rem;
  
  /* Icon separat animieren */
  transition:transform .25s ease;
}

/* ✨ Hover-Effekt */
.benefit-list li:hover {
  transform:translateY(-6px) scale(1.03);
  background:#FFFFFF;                         /* etwas heller */
  box-shadow:0 8px 20px rgba(28,69,135,.15);  /* stärkerer Schatten */
}

.benefit-list li:hover i {
  transform:rotate(6deg);
}
/* ============================================================
   Services
   ============================================================ */
/* SERVICES im Stil der FEATURES */
.services {
  background: #ffffff;
  padding: 6rem 0;
  text-align: center;
}

.section-heading h2 {
  font-size: 2rem;
  color: #1C4587;
  margin-bottom: 0.5rem;
}

.section-heading p {
  font-size: 1.1rem;
  color: #1C4587;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}


.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.feature-item {
  flex: 1 1 220px;
  max-width: 250px;
  background: #F9FBFF;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(28, 69, 135, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(28, 69, 135, 0.15);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #399AF8;
  color: #ffffff;
  font-size: 2rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-learn {
  display: inline-block;
  margin-top: 1rem;
  color: #1C4587;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-learn i {
  margin-left: 0.4rem;
  font-size: 0.9rem;
}

.link-learn:hover {
  color: #399AF8;
}



/* Vorteilsbereich */
#vorteile.features-section {
  background: linear-gradient(90deg, #EFF8FF, #ffffff);
  padding: 6rem 0;
}
#vorteile .feature-item p {
  opacity: 0.85;
}
#vorteile .section-heading {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 4rem;
}

#vorteile .section-heading h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1C4587;
  line-height: 1.3;
  margin-bottom: 1rem;
  position: relative;
}

#vorteile .section-heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #399AF8;
  margin-top: 0.75rem;
  border-radius: 9999px;
}

#vorteile .section-heading p {
  font-size: 1.15rem;
  color: #1C4587;
  opacity: 0.9;
  max-width: 600px;
  margin: 1.5rem 0 0 0;
  line-height: 1.7;
}




/* Kundenstimmungen*/
.testimonial-section {
  background: linear-gradient(to bottom, #ffffff 0%, #F9FBFF 60%);
  padding: 6rem 2rem;
  text-align: center;
}

.testimonial-section .section-heading {
  margin-bottom: 3rem;
}

.swiper-container {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide.testimonial {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(28, 69, 135, 0.08);
  color: #1C4587;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide.testimonial::before {
  content: "❝";
  font-size: 4rem;
  color: #399AF8;
  position: absolute;
  top: -20px;
  left: 20px;
  opacity: 0.2;
}

.swiper-slide.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(28, 69, 135, 0.15);
}

.testimonial strong {
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #399AF8;
  font-style: normal;
}

/* ✅ Pfeil-Styling: Modern, zentriert, sichtbar */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  color: #399AF8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Abstand vom Rand */
.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* Icon-Styling */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Container-Positionierung wichtig */
.swiper-container {
  position: relative;
  overflow: visible;
}









/* ============================================================
   Footer
   ============================================================ */
.footer{background:#0D2B57;color:#fff;padding:2rem 1.5rem;text-align:center}
.footer-nav a{color:#fff;margin:0 1rem;opacity:.8;transition:.3s}
.footer-nav a:hover{color:#399AF8;opacity:1}

/* ============================================================
   Mobile Menü
   ============================================================ */


.nav-toggle{
  display:none;               /* wird erst per Media Query sichtbar */
  flex-direction:column;
  justify-content:center;
  align-items:center;
  width:40px; height:30px;    /* Tap-Fläche */
  gap:6px; cursor:pointer;
}
.nav-toggle span{
  width:28px; height:3px;
  background:#fff;
  border-radius:3px;
  transition:all .35s ease;   /* sanfter Übergang */
  transform-origin:center;    /* Drehpunkt in der Mitte */
}


/* ­Obere Linie → Diagonale rechts-unten */
.nav-toggle.active span:nth-child(1){
  transform:translateY(9px) rotate(45deg);
  width:30px;
}

/* Mittlere Linie → verschwindet (Skalierung wirkt „verschmelzend“) */
.nav-toggle.active span:nth-child(2){
  transform:scaleX(0);
  opacity:0;
}

/* Untere Linie → Diagonale links-oben */
.nav-toggle.active span:nth-child(3){
  transform:translateY(-9px) rotate(-45deg);
  width:30px;
}
@media (max-width:768px){
  .nav-toggle{display:flex;}
  .nav-main{display:none;}
}
@media (min-width:769px){
  .nav-toggle{display:none;}
  .nav-main{display:flex;}
}




.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: #1C4587;
  padding: 1rem 1.5rem;
  z-index: 9999;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s, opacity 0.35s;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Nur auf mobilen Geräten sichtbar */
@media (max-width: 768px) {
  .nav-main {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu a {
    display: block;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 500;
  }

  .mobile-menu a:hover {
    color: #399AF8;
  }

  .mobile-menu button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    width: 100%;
  }

  .mobile-menu-dropdown > button {
    display: block;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    width: 100%;
  }

  .mobile-menu button:hover {
    color: #399AF8;
  }

  .mobile-menu-dropdown #mobile-services-dropdown a {
    margin-left: 1rem;
    margin-bottom: 0.5rem;
  }

  .mobile-menu-dropdown #mobile-services-dropdown a:hover {
    color: #5EB9FC;
  }
}

/* Desktop: Navigation sichtbar, Toggle ausgeblendet */
@media (min-width: 769px) {
  .nav-main {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}


/* ============================================================
   Gradient-Hero (rechtliche Seiten)
   ============================================================ */
.hero--gradient::before{
  background:linear-gradient(to right,#1C4587,#399AF8) !important;
}
.hero--gradient::after{display:none!important}

/* Hero-Sektion mit Formen */
.hero-shape {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #399AF8, #2a7bc8);
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-shape h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-shape .highlight {
  color: #ffdd57;
}

.hero-shape p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-shape a.btn-primary {
  background: #ffdd57;
  color: #1C4587;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-shape a.btn-primary:hover {
  background: #ffc107;
}

.hero-shape__circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero-shape__circle--top-left {
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
}

.hero-shape__circle--bottom-right {
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 20%;
  transform: rotate(45deg);
}

.hero-shape__circle--middle-left {
  top: 30%;
  left: -40px;
  width: 120px;
  height: 120px;
}


/* Datenschutz Sektionen */
.privacy-section {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(28, 69, 135, 0.1);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
}

.privacy-section h2,
.privacy-section h3 {
  color: #1C4587;
  margin-bottom: 1rem;
}

.privacy-section p,
.privacy-section ul {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.privacy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* WHY SUPPORT Bereich */
.why-support {
  background: linear-gradient(to bottom, #DBEEFE 0%, #ffffff 70%, #ffffff 100%);
  padding: 6rem 1rem;
  text-align: center;
}
.why-inner {
  max-width: 800px;
  margin: 0 auto;
}
.why-icon {
  font-size: 3rem;
  color: #399AF8;
  margin-bottom: 1rem;
}
.why-support h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.why-support h2::after {
  content: '';
  display: block;
  width: 50%;
  height: 4px;
  background: #399AF8;
  margin: 0.5rem auto 1.5rem;
}
.why-lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1C4587;
}
.why-support p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1C4587;
  margin-bottom: 1rem;
}
/*fffffff*/
.value-section {
  background: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
}

.value-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.value-section h2 {
  font-size: 2rem;
  color: #1C4587;
  margin-bottom: 1.5rem;
}

.value-section .lead {
  font-size: 1.2rem;
  color: #1C4587;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.value-box {
  background: #F9FBFF;
  border-radius: 1rem;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 4px 12px rgba(28, 69, 135, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(28, 69, 135, 0.12);
}

.value-box i {
  font-size: 2rem;
  color: #399AF8;
  margin-bottom: 1rem;
}


/*ffffffff*/

.split-section {
  background: linear-gradient(to bottom, #ffffff 0%, #EFF8FF 20%,#EFF8FF 80%, #ffffff 100%);
  padding: 6rem 2rem;
}

.split-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.split-image {
  flex: 1 1 400px;
}

.split-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(28, 69, 135, 0.1);
}

.split-text {
  flex: 1 1 500px;
}

.split-text h2 {
  font-size: 2rem;
  color: #1C4587;
  margin-bottom: 1rem;
}

.split-text p {
  font-size: 1.1rem;
  color: #1C4587;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.split-text ul {
  list-style: none;
  padding: 0;
}

.split-text li {
  font-size: 1rem;
  color: #1C4587;
  margin-bottom: 0.8rem;
}

.split-text li i {
  color: #399AF8;
  margin-right: 0.5rem;
}
/* Bild nach rechts, Text nach links */
.split-container.reverse {
  flex-direction: row-reverse;
}

/*bbbbbb*/
/* 🎨 Farbige schräge Fläche */
.editorial-section {
  background: #DBEEFE;
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
  color: #1C4587;
  overflow: hidden;
}

.editorial-section.skewed-bg::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 300px;
  background: #DBEEFE;
  transform: skewY(-3deg);
  transform-origin: top left;
  z-index: -1;
}

.editorial-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #2A7BC8;
  font-weight: 600;
  margin-bottom: 1rem;
}

.headline {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 700;
}

.editorial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.editorial-highlight {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: #1C4587;
  background: #ffffff;
  padding: 1.75rem 2rem;
  border-left: 6px solid #399AF8;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(28, 69, 135, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editorial-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(28, 69, 135, 0.12);
}

/* ✨ Scroll-Fade-In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/*Spotlight*/

.spotlight-section {
  background: linear-gradient(90deg, #EFF8FF, #ffffff);
  padding: 4rem 2rem;
  overflow: hidden;
}

.spotlight-text {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
}

.highlight-word {
  font-size: 4rem;
  font-weight: 700;
  color: #1C4587;
  opacity: 0.1;
  letter-spacing: -1px;
  transform: rotate(-2deg);
  transition: opacity 0.3s ease;
}

.highlight-word:hover {
  opacity: 0.25;
}


/* Über uns*/
.about-preview {
  background: linear-gradient(90deg, #EFF8FF, #ffffff);
  padding: 6rem 2rem;
  text-align: left;
}

.about-preview .section-heading {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: left;
}

.about-preview .section-heading h2 {
  font-size: 2.4rem;
  color: #1C4587;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-preview .section-heading p {
  font-size: 1.2rem;
  color: #1C4587;
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

.about-preview p {
  font-size: 1.1rem;
  color: #1C4587;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}
.about-preview .btn-primary {
  margin-top: 2.5rem;
  display: inline-block;
}







@media (max-width: 600px) {
  .highlight-word {
    font-size: 2.5rem;
    letter-spacing: normal;
    transform: rotate(0deg);
    text-align: left;
    line-height: 1.2;
    flex: 1 1 100%;
  }

  .spotlight-text {
    gap: 1rem;
    flex-direction: column;
  }

  #vorteile.features-section {
    padding: 4rem 1rem;
    background: linear-gradient(90deg, #EFF8FF, #ffffff);
  }

  #vorteile .section-heading {
    text-align: left;
    padding: 0 1rem;
  }

  #vorteile .section-heading h2 {
    font-size: 1.8rem;
    text-align: left;
  }

  #vorteile .section-heading p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
  }
}
