body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* Für den Scrollbalken */
::-webkit-scrollbar {
  width: 8px;
}

/* Hintergrund der Leiste */
::-webkit-scrollbar-track {
  background: #f0f0f0; /* Heller Hintergrund */
}

/* Farbe des Scrollbalkens */
::-webkit-scrollbar-thumb {
  background-color: #008080; /* Petrol */
  border-radius: 6px;
}

/* Optional: Farbe beim Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #006666;
}

.navbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.nav-container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 100px;
  width: auto;
  transition: opacity 0.3s ease;
}

/* Standard: Zeige nur das große Logo */
.logo-default {
  display: block;
}
.logo-scrolled {
  display: none;
}

/* Bei Scroll: wechsle das Logo */
.navbar.scrolled .logo-default {
  display: none;
}
.navbar.scrolled .logo-scrolled {
  display: block;
}





.navbar.scrolled {
  background-color: white;
  padding: 0.6rem 0;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .logo img {
  height: 15vh;
  max-height: 60px;
}

.nav-links-box {
  list-style: none;
  display: flex;
  gap: 2rem;
  transition: padding 0.4s ease, background-color 0.4s ease;
  align-items: center;
}

.navbar.scrolled .nav-links-box {
  padding: 0.4rem 1.2rem;
}

.nav-links-box li {
  margin: 0;
}

/* Standard */
.nav-links-box a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

/* Scroll-Farbe */
.navbar.scrolled .nav-links-box a {
  color: #333 !important;
}

/* Ausnahme für Kontakt-Link */
.navbar.scrolled .nav-links-box a.kontakt-link {
  color: #ffffff !important;
}


nav a.kontakt-link {
  background-color: #008080;
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.7);
  animation: kontaktpulse 2s infinite;
}

/* Pulsierende Keyframes */
@keyframes kontaktpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 128, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 128, 128, 0);
  }
}



nav a.kontakt-link:hover {
  background-color: #00a3a3; /* leichte Hover-Änderung */
  color: white;
}


.nav-links-box a:hover {
  color: #008080;
}

/* HAMBURGER Menü */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  background: #008080;
  border-radius: 2px;
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s ease;
  width: 100%;
  position: relative;
}

/* Animation: Hamburger → X */
#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.section {
  padding: 10vh 5vw;
  max-width: 80vw;
  margin: 0 auto;
}
/* === Fullscreen-Hero mit Hintergrundbild + Overlay (ersetzt die alte Hero-Section) === */
.hero-coaching {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 8vh, 140px) 5vw;
  color: #fff;
  background-image: url("Hinrichsfoto/10 - Verena Hinrichs-22.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; /* wichtig für das Overlay */
}

.hero-coaching::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,                  /* Verlauf von rechts nach links */
    rgba(0, 0, 0, 0.3) 0%,     /* rechts dunkel */
    rgba(0, 0, 0, 0) 50%       /* zur Mitte hin transparent */
  );
  pointer-events: none;        /* klickt nicht ins Overlay */
}


.hero-coaching {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Inhalt an den rechten Rand */
  padding-right: 4vw;        /* Abstand vom Rand */
}

.hero-coaching::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
    max-width: 700px;
    text-align: left;
    position: relative;
    z-index: 9;
}
/* Textspalten-Layout nicht mehr nötig – hero-images entfällt */
.hero-text { 
  min-width: 0; 
}

/* Subline */
.hero-subline {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  letter-spacing: 0.2px;
}

/* Headline – responsive mit clamp() */
.hero-text h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.06;
}

.hero-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-heading span.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fließtext */
.hero-description {
  margin-top: 1.25rem;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 70ch;
}

/* CTA-Button */
.hero-button {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  /* lebendiger, aber dezent gehaltener Verlaufs-Button */
  background: linear-gradient(270deg, #008080, #00a3a3);
  background-size: 400% 400%;
  animation: gradientMove 5s ease infinite, kontaktpulse 2s infinite;
  transition: transform 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

.hero-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Keyframes */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes kontaktpulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 163, 163, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(0, 163, 163, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 163, 163, 0); }
}

/* Ehemalige Bild-Spalte deaktivieren (falls HTML noch vorhanden ist) */
.hero-images,
.hero-image-back,
.hero-image-front {
  display: none !important;
}

/* === Zugänglichkeit & Motion-Preferenzen === */
@media (prefers-reduced-motion: reduce) {
  .hero-heading span,
  .hero-button {
    transition: none;
    animation: none;
  }
}

/* === Mobile-Optimierungen === */
@media (max-width: 768px) {
  .hero-coaching {
    padding: max(60px, 8vh) 6vw;
    text-align: left;
    /* Parallax/Attachment vermeiden für Mobile-Performance */
    background-attachment: scroll;
  }

  .hero-coaching::after {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(
  to top,
  rgba(0, 0, 0, 0.6) 0%,   /* unten dunkler */
  rgba(0, 0, 0, 0) 100%    /* oben transparent */
);

  pointer-events: none;        /* klickt nicht ins Overlay */
}

  .hero-description {
    max-width: 80ch;
  }
}



/* Optional: alternative „links-ausgerichtete“ Blockbreite (abschalten, wenn nicht gewünscht) */
/*
.hero-content {
  margin-left: 0;
  max-width: 900px;
}
*/


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #0077aa;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  font-size: 1rem;
}

.about-intro {
  background: #ffffff;
  padding: 5rem 15rem;
}

.about-flex {
  display: flex;
  align-items: center;        /* vertikal mittig */
  justify-content: space-between;
  gap: 7rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 55%;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 0.6rem;
  object-fit: cover;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.08);
}

.section-heading {
  font-weight: 800;
  color: #008080;
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
}

.section-text {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  color: #2b2b2b;
}

.section-text p + p {
  margin-top: 0.9rem;
}

.section-text .highlight {
  color: #005a5a;
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
}



.module-section {
  background: linear-gradient(to right, #c2d2dc, #d7e2eb);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.module-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: var(--delay, 0s); /* gestaffelte Verzögerung */
}

.module-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.module-more ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}

.module-more ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #1e1e1e;
}

.modul-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 700;
}

.white-text {
  color: #fff;
}

.colored-text {
  color: #008080; /* oder z. B. dein CTA-Farbton */
  font-weight: 500;
}

.modul-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin-top: 20px;
}

.modul-title h3 {
  font-size: 1.25rem;
  color: #1e1e1e;
  margin: 0;
}

.arrow {
  font-size: 1.5rem;
  color: #008080;
  transition: transform 0.4s ease;
  margin-top: 20px;
}

.module-card.expanded .arrow {
  transform: rotate(90deg); /* zeigt nach unten/rechts */
}

.modul-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #008080;
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.module-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.5s ease, filter 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transform: scale(1);
}

.module-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.module-card:hover img {
  transform: scale(1.03);
}

.module-card h3,
.module-card p {
  padding: 0 20px;
  transition: all 0.4s ease;
}

.module-card h3 {
  margin-top: 20px;
  font-size: 1.25rem;
  color: #1e1e1e;
  padding: 0%;
}

.module-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.module-content {
  position: relative;
  padding-bottom: 30px; /* Platz für Pfeil */
}

.module-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  padding: 0 20px;
  margin-top: 6px;
  color: #1e1e1e;
}

.module-more p,
.module-more ul {
  max-width: 36ch; /* ca. 36 Zeichen pro Zeile – optimal für Lesbarkeit */
  margin-left: auto;
  margin-right: auto;
}

.module-card.expanded .module-more {
  max-height: 600px;
  opacity: 1;
}

.highlight {
  color: #008080;
  font-weight: 500;
}

.module-card.expanded {
  transform: scale(1.03);
  z-index: 10;
}

.modules-grid.single-view .module-card:not(.expanded) {
  filter: blur(2.5px);
  opacity: 0.6;
  /* transform: scale(1); ← bleibt wie es ist */
  pointer-events: auto; /* wichtig: wieder anklickbar */
}

.modul-button {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 0;
  color: #2d8d8d; /* CTA-Farbe */
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.modul-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #2d8d8d; /* CTA-Farbe */
  transition: width 0.3s ease;
}

.modul-button:hover::after {
  width: 100%;
}

.module-more {
  text-align: center; /* oder center, wenn du willst */
}

.module-more ul li::marker {
  color: #008080; /* Bullet-Farbe in CTA-Farbe */
}

.coaching-expertise-section {
  background-color: #f9fafa;
  padding: 8vh 5vw;
  text-align: center;
}

.coaching-heading {
  font-size: 2rem;
  color: #008080;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.coaching-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.coaching-text .highlight {
  color: #008080;
  font-weight: 500;
}

.seminar-scroll-section {
  padding: 5rem 2rem;
  background: #ffffff;
  overflow-x: hidden;
}

.scroll-heading {
  text-align: center;
  font-size: 2rem;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.seminar-subline {
  text-align: center;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 3rem;
}
.business-coaching {
  max-width: 840px; /* Breite begrenzen für gute Lesbarkeit */
  margin: 2rem auto 0 auto; /* zentrieren innerhalb des Containers */
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  padding-bottom: 4rem;
}

.business-coaching p {
  margin-bottom: 1rem;
}


.scroll-card-wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2rem;
}

.scroll-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 1rem;
  padding: 5rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  text-align: left;
  transition: transform 0.3s ease;
}

.scroll-card:hover {
  transform: translateY(-5px);
}

.scroll-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.scroll-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #1e1e1e;
}

.scroll-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}
.scroll-nav {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #008080;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  cursor: pointer;
  z-index: 10;
}

.scroll-nav.left {
  left: 1rem;
}

.scroll-nav.right {
  right: 1rem;
}

.seminar-scroll-section {
  position: relative;
}
/* Item in der Mitte einrasten */
.scroll-card { scroll-snap-align: center; }

/* damit 1. & letzte Karte auch mittig einrasten
   280px Karte → halbe Breite = 140px */
.scroll-card-wrapper { scroll-padding-inline: calc(50% - 200px); }



/* Nur mobil anzeigen */
@media (min-width: 1024px) {
  .scroll-nav {
      display: none;
  }
}

@media (min-width: 1200px) {
  .scroll-card-wrapper {
      justify-content: center;
      overflow-x: hidden; /* keine Scrollleiste am Desktop nötig */
  }
}

.cta-diagonal {
  background-color: #008080; /* dein Petrol */
  color: white;
  padding: 6em 2em;
  transform: skewY(-3deg);
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  transform: skewY(3deg); /* Rückverzerrung für lesbaren Inhalt */
  text-align: center;
}

.cta-diagonal h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  margin-top: -30px;
}

.cta-diagonal p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

#testimonialText {
  font-size: 1.3rem;
  font-style: italic;
  color: white;
  transition: opacity 0.4s ease;
  opacity: 1;
}

.cta-diagonal-button {
  background-color: white;
  color: #008080;
  font-weight: 600;
  padding: 0.9em 1.8em;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}



.cta-diagonal-button:hover {
  background-color: #e0e0e0;
  color: #006666;
}

@media (max-width: 768px) {
  .cta-diagonal {
      padding: 4em 1.5em;
  }

  .cta-content {
      transform: none;
  }
}

/* Section + Mittel-Padding wie gewünscht */
.timeline-section {
  position: relative;
  padding: 5rem 40rem; /* oben/unten 5rem, links/rechts 40rem */
  background: #f9fbfb;
  font-family: "Poppins", sans-serif;
}

/* Mittellinie */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: #cfd8dc; /* Grundlinie */
  border-radius: 2px;
  overflow: hidden;
}
.timeline-line .line-fill {
  position: absolute;
  left: 0;top: 0;
  width: 100%;
  height: 0;                  /* wird per JS gefüllt */
  background: #008080;        /* Akzentfarbe */
  transition: height .25s ease-out;
}

/* Items links/rechts versetzt */
.timeline-item {
  position: relative;
  width: -50%;
  padding: 16px 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .4s ease, transform .4s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item.left  { left: -50%;  text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

/* Kartenstil */
.timeline-content {
  display: inline-block;
  max-width: 520px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  border-left: 5px solid #008080;
}
.timeline-item.left  .timeline-content { border-left: none; border-right: 5px solid #008080; }
.timeline-content h3 {
  margin: 0 0 .4rem 0;
  font-size: 1.25rem;
  color: #1e1e1e;
}
.timeline-content p { margin: .5rem 0; color: #2b2b2b; line-height: 1.6; }
.timeline-content p strong { color:#005a5a; }

/* Responsive – reduziert den Seitenabstand und stapelt untereinander */
@media (max-width: 1400px) {
  .timeline-section { padding: 5rem 10rem; }
}
@media (max-width: 980px) {
  .timeline-section { padding: 4rem 2rem; }
  .timeline-line { left: 24px; transform: none; }
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 90%;
        left: 0;
        text-align: left;
        padding-left: 25px; /* Platz für Linie */
  }
  .timeline-item.left  .timeline-content,
  .timeline-item.right .timeline-content {
    border-right: none; border-left: 5px solid #008080;
  }
}


.coaching-section {
  background: #ffffff;
  text-align: center;
  padding-top: 100px;
}

.section-heading {
  font-size: 2rem;
  color: #008080;
  margin-bottom: 1.5rem;
}

.section-subline {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  color: #444;
}

.coaching-columns {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.coaching-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  text-align: left;
}

.coaching-box h3 {
  margin-bottom: 1rem;
  color: #008080;
  font-size: 1.2rem;
}

.coaching-box ul {
  list-style: none;
  padding-left: 0;
}

.coaching-box li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
  color: #333;
}

.coaching-benefits h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #008080;
}

.coaching-benefits ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto;
}

.coaching-benefits li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #222;
}

.highlight {
  color: #008080;
  font-weight: 500;
}

.coaching-benefits li .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.coaching-benefits {
  padding: 20px;
}

/* ===== Praxis-Coaching visuell stark ===== */
.praxis-hero{
  --teal:#008080;
  --ink:#1e1e1e;
  --fg:#2b2b2b;
  --bg:#f5f8f9;

  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(0,128,128,.06), transparent),
    var(--bg);
  padding: 5rem 2rem;
  font-family: "Poppins", sans-serif;
}

.praxis-hero .wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px,4vw,56px);
  align-items: center;
}

/* Textseite */
.praxis-hero .eyebrow{
  color: var(--teal);
  font-weight: 700;
  letter-spacing:.02em;
  margin: 0 0 .25rem 0;
}
.praxis-hero h2{
  margin: 0 0 1rem 0;
  font-size: clamp(1.9rem,3.4vw,2.4rem);
  color: var(--ink);
  font-weight: 800;
}
.praxis-hero .prose p{
  margin: 0 0 1rem 0;
  line-height: 1.75;
  color: var(--fg);
  max-width: 70ch;
}
.btn-cta{
  display:inline-block;
  margin-top:.5rem;
  padding:.95rem 1.5rem;
  border-radius:999px;
  background: linear-gradient(270deg, #008080, #00a3a3);
  color:#fff; text-decoration:none; font-weight:700;
  box-shadow:0 12px 32px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-cta:hover{ transform: translateY(-2px); box-shadow:0 16px 36px rgba(0,0,0,.12); }

/* Medienseite (Collage) */
.media{ position: relative; min-height: 520px; }
.media .main{
  position: relative;
  margin:0;
  width: min(520px, 100%);
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  background:#ddd;
}
.media .main img{ width:100%; height:100%; object-fit:cover; display:block; }
.media .main figcaption{
  position:absolute; left:12px; bottom:12px;
  background: rgba(0,0,0,.55);
  color:#fff; font-size:.9rem; padding:.35rem .6rem; border-radius:10px;
}

/* Kleine überlappende Karten */
.media .card{
  position:absolute; margin:0;
  width: 200px; aspect-ratio: 4/3;
  border-radius: 14px; overflow:hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.14);
  background:#eee;
}
.media .card img{ width:100%; height:100%; object-fit:cover; display:block; }
.media .card-1{ left:-28px; bottom:-28px; transform: rotate(-0deg); }
.media .card-2{ right:-24px; top:-24px;   transform: rotate(0deg); }

.media .pill{
  position:absolute; right:-10px; bottom: -14px;
  background:#fff; color:var(--teal); font-weight:800;
  border:2px solid var(--teal);
  padding:.45rem .75rem; border-radius:999px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* Responsive */
@media (max-width: 980px){
  .praxis-hero .wrap{
    grid-template-columns: 1fr;
  }
  .media{ order:-1; min-height: 0; }
  .media .main{ width:100%; aspect-ratio: 16/10; }
  .media .card{ width: 38vw; }
}
@media (max-width: 560px){
  .media .card-1{ left:-12px; bottom:-18px; }
  .media .card-2{ right:-12px; top:-18px; }
  .media .pill{ right:0; bottom:-12px; }
}


/* ===== Vita / Biografie ===== */
.vita{
  --teal:#008080; --ink:#1e1e1e; --text:#2b2b2b; --bg:#f7fafb;
  background: var(--bg);
  padding: 5rem 2rem;
  font-family: "Poppins", sans-serif;
}
.vita-wrap{
  max-width: 1200px; margin:0 auto;
  display:grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px,4vw,56px); align-items:start;
}
.vita-photo{
  margin:0; width:100%;
  border-radius: 22px; overflow:hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  background:#e9eef0; aspect-ratio: 4/5;
}
.vita-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

.vita-heading{
  margin:0 0 .6rem 0; font-weight:800;
  color:var(--ink); font-size: clamp(1.9rem,3.2vw,2.3rem);
}
.vita-block{ margin-top: 1.1rem; }
.vita-block h3{
  margin:0 0 .35rem 0; color:var(--teal);
  font-weight:800; font-size:1.05rem;
}
.vita-list{ margin:0; padding:0; list-style:none; }
.vita-list li{
  position:relative; padding-left:30px; margin:.45rem 0; color:var(--text); line-height:1.6;
}
.vita-list li::before{
  content:""; position:absolute; left:0; top:.45rem;
  width:16px; height:16px; border-radius:50%;
  border:2px solid var(--teal); box-shadow: inset 0 0 0 6px rgba(0,128,128,.15);
}

/* Responsive */
@media (max-width: 900px){
  .vita-wrap{ grid-template-columns: 1fr; }
  .vita-photo{ max-width: 520px; margin-inline:auto; aspect-ratio: 3/4; }
}


.kontakt-section {
  background: #f9fafa;
  padding: 80px 20px;
}

.kontakt-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.kontakt-info h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #008080;
}

.kontakt-info p {
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.6;
}

li a {
  color: inherit; /* behält deine Textfarbe */
  text-decoration: none; /* entfernt Unterstreichung */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

li a:hover {
  text-decoration: underline;
}

.kontakt-daten {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  color: #333;
}

.kontakt-daten li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kontakt-daten img {
  width: 20px;
  height: 20px;
}

.kontakt-formular {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 120px;
}

.form-grid {
  display: flex;
  gap: 1rem;
}

.form-grid input {
  flex: 1;
}

.kontakt-formular input,
.kontakt-formular textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: "Poppins", sans-serif;
  resize: vertical;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
  border-color: #008080;
  outline: none;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #444;
}

.checkbox-label a {
  color: #008080;
  text-decoration: underline;
}

.kontakt-formular button {
  align-self: center;
  background: #008080;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.kontakt-formular button:hover {
  background: #006666;
}

@media (max-width: 768px) {

  html {
    scroll-behavior: smooth;
  }
  .kontakt-container {
      grid-template-columns: 1fr;
  }
  .form-grid {
      flex-direction: column;
  }

  .kontakt-formular {
      margin-top: 0px;
  }

  .footer-slogan {
      text-align: center;
  }
}

.custom-footer {
  background-color: #008080;
  color: white;
  padding: 3rem 2rem 1rem;
  font-family: "Poppins", sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
  margin-bottom: 20px;

}

.footer-block {
  position: relative;
  padding: 0 1rem;
  flex: 1;
  min-width: 160px;
}

/* Trennstrich rechts – nur bei den mittleren Blöcken */
.footer-block:nth-child(2)::after,
.footer-block:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -15px;
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.logo-title h4 {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

.logo-title p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}

.footer-logo {
  height: 90px;
  object-fit: contain;
}

.footer-label {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-block a {
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.2rem;
}

.footer-block a:hover {
  text-decoration: underline;
  color: #004f4f;
}

.footer-highlight {
  text-align: right;
}

.footer-slogan {
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  margin-bottom: -1.5rem;
}

.footer-label {
  position: relative;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-label::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: white; /* oder dein Akzentfarbton */
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #004f4f;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-legal-links{
  display: none;
}

#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #008080;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 0.8rem 1rem;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.7);
  animation: pulse 2s infinite;
}




/*//////////////// Imrepssum //////////////*/

.impressum-section {
  padding: 20vh 5vw;
  background-color: #f4f7f8;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.impressum-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impressum-container h1 {
  font-size: 2.7rem;
  color: #008080;
  margin-bottom: 1.5rem;
}

.impressum-container h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: #333;
}

.impressum-container p {
  margin: 0.5rem 0 1rem;
  line-height: 1.7;
}

.impressum-container a {
  color: #008080;
  text-decoration: none;
}

.impressum-container a:hover {
  text-decoration: underline;
}

.agentur-info {
  margin-top: 4rem;
  opacity: 0.8;
}

.agentur-info img {
  margin-top: 0.5rem;
  height: 80px;
}

/*//////////////// Datenschutz //////////////*/

.datenschutz-section {
  padding: 20vh 5vw;
  background-color: #f4f7f8;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.datenschutz-container {
  max-width: 1200px;
  margin: 0 auto;
}

.datenschutz-container h1 {
  font-size: 2.7rem;
  color: #008080;
  margin-bottom: 1.5rem;
}

.datenschutz-container h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  color: #333;
}

.datenschutz-container p {
  margin: 0.5rem 0 1rem;
  line-height: 1.7;
}

.datenschutz-container ul {
  list-style: disc;
  margin: 0 auto 1rem auto;
  text-align: left;
  padding-left: 1.2rem;
  max-width: 600px;
}

.datenschutz-container a {
  color: #008080;
  text-decoration: none;
}

.datenschutz-container a:hover {
  text-decoration: underline;
}

/*//////////////// Mobile 768px //////////////*/

@media (max-width: 768px) {
  .navbar {
      background-color: white !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 1rem 0;
  }

  .nav-links-box a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.hero-coaching {
    position: relative;
    min-height: 80vh;
    display: grid;
    place-items: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

  .logo img {
      max-height: 60px;
  }
  .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
  }
  .hero-subline {
      text-align: left;
  }

  .hero-heading {
      text-align: left;
  }

  .hero-text {
      flex: 1 1 100%;
      min-width: unset;
  }

  .hero-text h1 {
      font-size: 8vw;
      line-height: 1.3;
  }

  .hero-description {
      font-size: 1rem;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
  }

  .hero-button {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
  }

  .hero-images {
      flex: 1 1 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
  }

  .hero-image-back img,
  .hero-image-front img {
      width: 80vw;
      max-width: 90%;
      position: static;
      margin-top: 1rem;
  }

  .hero-image-front {
      margin-top: -2rem;
  }

  .hamburger {
      display: block;
  }

  .nav-links-box {
      position: absolute;
      top: 78%;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      align-items: center;
      gap: 3.2rem;
      padding: 1.5rem 0;
      display: none;
  }

  #menu-toggle:checked + .hamburger + .nav-links-box {
      display: flex;
  }
  .coaching-section {
      padding-top: 60px;
      text-align: left;

  }

  .section-heading {
      font-size: 1.6rem;
      text-align: center;
  }

  .section-subline {
      font-size: 1rem;
      margin: 0 auto 2rem;
      padding: 0 1rem;
      text-align: center;
  }

  .coaching-columns {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      padding: 60px 20px;
      padding-bottom: 20px;
  }

  .coaching-box {
      padding: 1.5rem;
      max-width: 90%;
  }

  .coaching-box h3 {
      font-size: 1.1rem;
  }

  .coaching-box li {
      font-size: 0.95rem;
  }

  .coaching-benefits {
      padding: 1rem;
  }

  .coaching-benefits h3 {
      font-size: 1.2rem;
      text-align: center;
  }

  .coaching-benefits ul {
      padding: 0 1rem;
      text-align: center;
  }

  .coaching-benefits li {
      font-size: 1rem;
      line-height: 1.5;
  }

  .about-flex {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

  .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2.5rem;
  }

  .footer-block {
      min-width: unset;
      width: 100%;
      padding: 0;
  }

  .footer-block:nth-child(2)::after,
  .footer-block:nth-child(3)::after {
      display: none;
  }

  .footer-slogan {
      font-size: 1.2rem;
      text-align: center;
  }


  .logo-title h4 {
      font-size: 1.1rem;
  }

  .footer-logo {
      height: 80px;
      margin-bottom: 0.5rem;
  }

  .footer-label {
      font-size: 1rem;
  }

  .footer-label::after {
      width: 30px;
  }

  .footer-bottom {
      font-size: 0.75rem;
      padding-top: 1rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-legal-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-legal-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
  }
  
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #004f4f;
  }
  

  .impressum-section {
    padding: 10vh 6vw;
    text-align: left;
  }

  .impressum-container h1 {
    font-size: 2rem;
    text-align: center;
  }

  .impressum-container h2 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }

  .impressum-container p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .agentur-info {
    text-align: center;
  }

  .agentur-info img {
    height: 60px;
    margin: 1rem auto 0;
  }

  .datenschutz-section {
    padding: 10vh 6vw;
  }

  .datenschutz-container{
    margin-top: 50px;
  }

  .datenschutz-container h1 {
    font-size: 2rem;
    text-align: center;
  }

  .datenschutz-container h2 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
  }

  .datenschutz-container p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .datenschutz-container ul {
    font-size: 0.95rem;
    padding-left: 1rem;
    max-width: 100%;
  }

  .about-intro {
    background: #ffffff;
    padding: 5rem 2rem;
}

 
}





/*//////////////// Ipad Mini  //////////////*/

@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (orientation: portrait) {
  /* Header */
  .navbar {
      background-color: white !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 1.2rem 0;
  }

  .logo img {
      max-height: 100px;
  }

  .logo-scrolled{
    margin-left: 30px;
  }

  /* Hero Bereich */
  .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
  }

  .hero-subline,
  .hero-heading,
  .hero-description {
      text-align: center;
  }

  .hero-text {
      flex: 1 1 100%;
      padding: 0 1rem;
  }

  .hero-text h1 {
      font-size: 4vw;
      line-height: 1.3;
  }

  .hero-button {
      font-size: 1rem;
      padding: 0.8rem 1.5rem;
  }

  .hero-images {
      flex: 1 1 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .hero-image-back img,
  .hero-image-front img {
      width: 80vw;
      max-width: 90%;
      position: static;
      margin-top: 1rem;
  }

  .hero-image-front {
      margin-top: -2rem;
  }

  /* Navigation */
  .hamburger {
      display: block;
  }

  .nav-links-box {
      position: absolute;
      top: 78%;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      align-items: center;
      gap: 1.2rem;
      padding: 1.5rem 0;
      display: none;
  }

  #menu-toggle:checked + .hamburger + .nav-links-box {
      display: flex;
  }

  /* Coaching-Section */
  .coaching-section {
      padding-top: 80px;
      text-align: left;
  }

  .section-heading {
      font-size: 1.8rem;
      text-align: center;
  }

  .section-subline {
      font-size: 1rem;
      margin: 0 auto 2rem;
      padding: 0 1rem;
      text-align: center;
  }

  .coaching-columns {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
  }

  .coaching-box {
      padding: 2rem;
      max-width: 90%;
  }

  .coaching-box h3 {
      font-size: 1.2rem;
  }

  .coaching-box li {
      font-size: 1rem;
  }

  .coaching-benefits {
      padding: 1rem;
  }

  .coaching-benefits h3 {
      font-size: 1.3rem;
      text-align: center;
  }

  .coaching-benefits ul {
      padding: 0 1rem;
      text-align: center;
  }

  .coaching-benefits li {
      font-size: 1rem;
      line-height: 1.5;
  }

  /* Footer */
  .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2.5rem;
  }

  .footer-block {
      min-width: unset;
      width: 100%;
      padding: 0;
  }

  .footer-block:nth-child(2)::after,
  .footer-block:nth-child(3)::after {
      display: none;
  }

  .footer-slogan {
      font-size: 1.3rem;
      text-align: center;
      padding: 0 1rem;
  }


  .logo-title h4 {
      font-size: 1.2rem;
  }

  .footer-logo {
      height: 90px;
      margin-bottom: 0.5rem;
  }

  .footer-label {
      font-size: 1rem;
  }

  .footer-label::after {
      width: 30px;
  }

  .footer-bottom {
      font-size: 0.75rem;
      padding-top: 1.5rem;
  }
  #scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #008080;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.7);
    animation: pulse 2s infinite;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {

/* Für den Scrollbalken */
::-webkit-scrollbar {
  display: none;
  width: 8px;
}

/* Hintergrund der Leiste */
::-webkit-scrollbar-track {
  background: #f0f0f0; /* Heller Hintergrund */
}

/* Farbe des Scrollbalkens */
::-webkit-scrollbar-thumb {
  background-color: #008080; /* Petrol */
  border-radius: 6px;
}

/* Optional: Farbe beim Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #006666;
}
  .hero-text h1 {
    font-size: 2.8vw;
    line-height: 1.3;
  }
  .hamburger {
    display: block;
}
.navbar {
  background-color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}
.nav-links-box {
    position: absolute;
    top: 78%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    display: none;
}

#menu-toggle:checked + .hamburger + .nav-links-box {
    display: flex;
}

  .hero-description {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .hero-images {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .hero-coaching{
    padding-bottom: 6vh;
  }

  .about-container {
    flex-direction: row;
    align-items: center;
    gap: 3vw;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-heading{
    font-size: 3.2rem;
  } 

  .coaching-columns {
    display: flex;
    padding: 20px 20px;
    gap: 2rem;
  }

  .coaching-box {
    max-width: 45%;
  }

  .seminar-scroll-section{
    padding: 7rem 2rem;
  }

  .kontakt-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .scroll-card-wrapper {
    gap: 1.5rem;
  }

  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    text-align: center;
    gap: 2px;
  }

  .footer-block {
    flex: 1 1 20%;
    min-width: 160px;
  }

  .footer-slogan {
    text-align: right;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
  }

  .footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .footer-legal-links a {
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
  }

  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-block:nth-child(2)::after, .footer-block:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -5px;
    height: 80%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}
}


@media (max-width: 375px) {
  .hero-text h1 {
    font-size: 7vw;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
    text-align: left;
  }

  .hero-images {
    flex-direction: column;
    align-items: center;
  }

  .hero-coaching{
    padding-top: 20vh;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .about-text h3 {
    font-size: 1.1rem;
    text-align: center;
  }

  .coaching-columns {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .coaching-box {
    max-width: 90%;
    text-align: left;
  }

  .kontakt-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .scroll-card-wrapper {
    gap: 1rem;
    padding: 0 1rem 2rem;
  }

  .scroll-card {
    flex: 0 0 260px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-block {
    width: 100%;
    padding: 0;
  }

  .footer-slogan {
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
    padding-top: 1.2rem;
  }

  .footer-links a {
    text-align: center;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1rem;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    text-align: center;
  }

  .footer-legal-links a {
    font-size: 0.85rem;
  }
}
