/* ============================= */
/* Reset & Basis                 */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f8f8f5;
  color: #2d2d2d;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  -webkit-tap-highlight-color: transparent;
}


/* ===================== */
/* Top Navigation        */
/* ===================== */

.top-nav {
  width: 100%;
  background: #35684f;
  display: flex;
  justify-content: center;
  padding: 4px 0 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  min-width: 92px;
  height: 86px;
  text-decoration: none;
  background:
    linear-gradient(
      to bottom,
      #52755f 0%,
      #3f6a54 18%,
      #315742 55%,
      #2d533f 100%
    );
  border-right: 1px solid rgba(0,0,0,0.30);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow:
    inset 0 10px 14px rgba(255,255,255,0.05),
    inset 0 -10px 14px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.nav-logo img {
  width: 62px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.22));
}

.nav-shell {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: visible;
  border-radius: 12px;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -8px 18px rgba(0,0,0,0.10);
  background:
    linear-gradient(
      to bottom,
      #537961 0%,
      #3f6b54 18%,
      #2f5c46 52%,
      #35684f 78%,
      #4a715a 100%
    );
}

.nav-item {
  min-width: 155px;
  height: 86px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  color: #fff6e7;
  text-align: center;
  white-space: nowrap;
  background:
    linear-gradient(
      to bottom,
      #52755f 0%,
      #3f6a54 18%,
      #315742 55%,
      #2d533f 100%
    );
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(0,0,0,0.30);
  box-shadow:
    inset 0 10px 14px rgba(255,255,255,0.05),
    inset 0 -10px 14px rgba(0,0,0,0.12);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

/*.nav-item:first-child {
  border-left: none;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}*/
.nav-item:first-child {
  border-left: none;
}

.nav-item:hover {
  background: #d3d9b2;
  color: #1f241c;
  box-shadow:
    inset 0 10px 16px rgba(255,255,255,0.35),
    inset 0 -10px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

.nav-item.active {
  color: #f9eede;
  background:
    linear-gradient(
      to bottom,
      #32493d 0%,
      #2f4439 40%,
      #3b4f45 70%,
      #4e5c55 100%
    );
  box-shadow:
    inset 0 4px 10px rgba(0,0,0,0.35),
    inset 0 -6px 10px rgba(255,255,255,0.05);
  transform: translateY(1px);
}

/* ===================== */
/* Navigation Dropdown   */
/* ===================== */

.nav-dropdown {
  position: relative;
  display: flex;
}

.nav-parent {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      to bottom,
      #4f745d 0%,
      #3f6a54 50%,
      #355846 100%
    );
  border-radius: 10px;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 1200;
}

.dropdown-item {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  color: #fcf2e1;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.06) 0%,
      rgba(0,0,0,0.06) 100%
    );
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item:hover {
  background: #d3d9b2;
  color: #1f241c;
}

.dropdown-item.active-sub {
  background:
    linear-gradient(
      to bottom,
      #32493d 0%,
      #2f4439 40%,
      #3b4f45 70%,
      #4e5c55 100%
    );
  color: #f3e8d8;
}

/* ===================== */
/* Mobile Navigation     */
/* ===================== */

.mobile-nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: none;
  background: linear-gradient(
    to bottom,
    #52755f 0%,
    #3f6a54 18%,
    #315742 55%,
    #2d533f 100%
  );
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
}

.mobile-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #f3e8d8;
  border-radius: 999px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 360px;
  height: 100%;
  overflow-y: auto;
  padding: 24px 20px 30px;
  background:
    linear-gradient(
      to bottom,
      #537961 0%,
      #3f6b54 18%,
      #2f5c46 52%,
      #35684f 78%,
      #4a715a 100%
    );
  box-shadow: -10px 0 24px rgba(0,0,0,0.28);
}

.mobile-menu-close {
  display: block;
  margin-left: auto;
  margin-bottom: 18px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #f3e8d8;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-item,
.mobile-nav-subitem {
  display: block;
  width: 100%;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
  color: #f3e8d8;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.mobile-nav-item {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.mobile-nav-item.active {
  background: rgba(255,255,255,0.10);
  border-radius: 8px;
}

.mobile-nav-group {
  margin-top: 18px;
  padding-top: 8px;
}

.mobile-nav-group-title {
  font-family: "Times New Roman", Times, serif;
  color: #b0b593;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  padding: 0 10px;
}

.mobile-nav-subitem {
  font-size: 1rem;
  padding-left: 22px;
}

.mobile-nav-item:hover,
.mobile-nav-subitem:hover {
  background: rgba(255,255,255,0.10);
  border-radius: 8px;
}

/* ===================== */
/* Hero                  */
/* ===================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-image: url("background-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.18);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.hero-logo {
  flex-shrink: 0;
  display: flex;
    margin-top: -80px;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.28));
}

.small-line {
  font-family: "Times New Roman", Times, serif;
    margin-top: -20px;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #b0b593;
  /*color: #4a715a;*/
  line-height: 1.6;
  white-space: nowrap;
  text-shadow: 0 0 2px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.6);
  /*text-shadow: 2px 2px 6px rgba(0,0,0,0.35);*/
  /*text-shadow:   1px 1px 0 rgba(0,0,0,0.8),
 -1px 1px 0 rgba(0,0,0,0.8),
  1px -1px 0 rgba(0,0,0,0.8),
 -1px -1px 0 rgba(0,0,0,0.8);*/
}

.hero-text h1 {
  font-family: "Times New Roman", Times, serif;
  margin-top: 25px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.6;
  color: #f3e8d8;
  white-space: nowrap;
  text-transform: uppercase;
}

.divider {
  font-size: 2rem;
  margin: 10px 0;
  color: #f3e8d8;
}

.subtitle {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.6;
  color: #f3e8d8;
  white-space: nowrap;
}

.termin-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background-color: #b0b593;
  color: #24372b;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  border-radius: 14px;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.25s ease;
}

/** Hint Rules End*/

.termin-button {
  touch-action: manipulation;
}

.termin-hint {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  max-width: 620px;
  background: rgba(0, 0, 0, 0.78);
  color: #f3e8d8;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: terminHintFadeIn 0.35s ease;
    margin: 18px auto 0;
  text-align: center;
}

.termin-hint.show {
  display: block;
}

@keyframes terminHintFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-logo {
    margin-top: 0;
  }

  .small-line {
    margin-top: 0;
  }

  .hero-text h1 {
    margin-top: 12px;
  }
}

/* Mobil: als Toast unten anzeigen */
@media (max-width: 768px) {
  .termin-hint {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 420px;
    margin-top: 0;
    padding: 14px 16px;
    z-index: 5000;
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .termin-hint.show {
    display: block;
    animation: terminHintToastIn 0.35s ease;
  }

  @keyframes terminHintToastIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
}
/** Hint Rules End*/

.termin-button:hover {
  background-color: #325442;
  color: #f3e8d8;
  transform: translateY(-2px);
}

/* ===================== */
/* Classes of Dividers   */
/* ===================== */

.band-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.band-divider .band {
  position: absolute;
  left: -5%;
  width: 110%;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.band-divider-top {
  height: 120px;
  background: #b7b899;
  margin-top: -6px;
}

.band-divider-top .band-1 {
  top: 0;
  height: 28px;
  background: #325442;
}

.band-divider-top .band-2 {
  top: 18px;
  height: 34px;
  background: #6f8068;
}

.band-divider-top .band-3 {
  top: 42px;
  height: 38px;
  background: #8b957c;
}

.band-divider-top .band-4 {
  top: 68px;
  height: 52px;
  background: #a8ac8d;
}

.band-divider-middle {
  height: 95px;
  background: #325442;
}

.band-divider-middle .band-1 {
  top: 0;
  height: 24px;
  background: #9aa184;
}

.band-divider-middle .band-2 {
  top: 18px;
  height: 28px;
  background: #7d8e74;
}

.band-divider-middle .band-3 {
  top: 40px;
  height: 30px;
  background: #5f775f;
}

.band-divider-middle .band-4 {
  top: 62px;
  height: 33px;
  background: #466953;
}

.band-divider-bottom {
  height: 120px;
  background: #325442;
}

.band-divider-bottom .band-1 {
  top: 0;
  height: 24px;
  background: #879578;
}

.band-divider-bottom .band-2 {
  top: 18px;
  height: 28px;
  background: #9ba286;
}

.band-divider-bottom .band-3 {
  top: 42px;
  height: 30px;
  background: #7e8d73;
}

.band-divider-bottom .band-4 {
  top: 66px;
  height: 54px;
  background: #b7b899;
}

.ornament-divider {
  background: #b7b899;
  padding: 28px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ornament-divider::before {
  content: "";
  display: block;
  width: min(78vw, 420px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(50, 84, 66, 0),
    rgba(50, 84, 66, 0.18) 18%,
    rgba(50, 84, 66, 0.38) 50%,
    rgba(50, 84, 66, 0.18) 82%,
    rgba(50, 84, 66, 0)
  );
}

.curve-divider {
  position: relative;
  height: 70px;
  background: #b7b899;
  overflow: hidden;
}

.curve-divider::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 110%;
  height: 90px;
  background: #325442;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateY(38px);
}

.angled-divider {
  height: 80px;
  background:
    linear-gradient(
      to bottom right,
      #b7b899 0%,
      #b7b899 48%,
      #325442 49%,
      #325442 100%
    );
}


.soft-divider {
  position: relative;
  height: 72px;
  background: #b7b899;
  overflow: hidden;
}

.soft-divider-layer {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 0 0 32px 32px;
}

.soft-divider .layer-1 {
  top: 0;
  height: 22px;
  background: #325442;
}

.soft-divider .layer-2 {
  top: 18px;
  height: 24px;
  background: #7e8d73;
}

.soft-divider .layer-3 {
  top: 38px;
  height: 34px;
  background: #aeb091;
}
/* ===================== */
/* Testimonials          */
/* ===================== */

.testimonial-section {
  position: relative;
  background: #b7b899;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 40px 90px;
  text-align: center;
  overflow: hidden;
}

.testimonial-slider {
  width: 100%;
  max-width: 900px;
}

.testimonial-track {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

.testimonial-author {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.9rem;
  color: #111;
  margin-bottom: 24px;
}

.testimonial-line {
  width: 42px;
  height: 1px;
  background: #6d7c67;
  margin: 0 auto 34px;
}

.testimonial-quote {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.5rem;
  line-height: 1.45;
  font-style: italic;
  color: #111;
  margin: 0 auto 42px;
  max-width: 760px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot.active {
  background: #111;
}

.dot:hover {
  transform: scale(1.1);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #f4f1e8;
  font-size: 4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 5;
}

.slider-arrow:hover {
  color: #ffffff;
}

.slider-arrow-left {
  left: 70px;
}

.slider-arrow-right {
  right: 70px;
}


/* ===================== */
/* Info Card Settings    */
/* ===================== */

.legal-card {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 10px;
}

.legal-card p,
.osteopathy-inner p,
.about-card p,
.costs-card p,
.contact-card p {
  text-align: justify;
  hyphens: auto;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.legal-card p,
.osteopathy-inner p,
.about-card p {
  line-height: 1.6; 
}

html {
  hyphens: auto;
}


/* ===================== */
/* Info Cards            */
/* ===================== */

.info-cards-section {
  background: #325442;
  padding: 10px 40px 70px;
}

.info-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.info-card {
  background: #b7b899;
  border: 4px solid #000;
  min-height: 300px;
  padding: 42px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.info-card h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.info-card p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 3px 0;
}

.card-button {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: #b0b593;
  color: #111;
  border: 2px solid #325442;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.25s ease;
}

.card-button:hover {
  background: #325442;
  color: #f3e8d8;
  transform: translateY(-2px);
}

.socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  font-size: 2rem;
  color: #111;
  text-decoration: none;
}


.socials img {
  width: 48px;     
  height: 48px;
  object-fit: contain;
}

/* ===================== */
/* Patient Info          */
/* ===================== */

.patient-info {
  background: #325442;
  padding: 60px 40px 90px;
}

.patient-info-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.patient-info h2 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  letter-spacing: 0.18em;
  color: #b0b593;
  font-size: 2.1rem;
  margin-bottom: 42px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.patient-info p {
  font-family: "Times New Roman", Times, serif;
  color: #f3e8d8;
  font-size: 1.45rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ===================== */
/* Footer                */
/* ===================== */

.site-footer {
  background: #b7b899;
  padding: 70px 40px 55px;
  text-align: center;
}

.footer-line {
  max-width: 980px;
  height: 1px;
  background: #111;
  margin: 0 auto 34px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 46px;
  margin-bottom: 22px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.footer-copy {
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

/* ============================= */
/* About Me Page                 */
/* ============================= */

.about-page {
  background: #325442;
  padding: 40px 40px 30px;
  position: relative;
}

.about-top-label {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #3b5d4b;
  color: #f3e8d8;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.about-stage {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.about-image-wrap {
  width: 58%;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}

.about-card {
  position: absolute;
  left: 0;
  top: 28px;
  width: 54%;
  max-width: 520px;
  z-index: 3;
  background: #3e6a52;
  color: #f3e8d8;
  border: 4px solid #b7b899;
  border-radius: 10px;
  padding: 34px 26px 28px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.about-card h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-decoration: underline;
  text-align: center;
  color: #b0b593;
  margin-bottom: 22px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.about-card p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-band {
  margin-top: 10px;
}

.about-qualifications {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #325442;
  padding: 45px 40px 70px;
}

.about-qualifications-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-qualifications h2 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  letter-spacing: 0.22em;
  color: #b0b593;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 26px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.about-qualifications ul {
  display: inline-block;
  text-align: left;
  color: #f3e8d8;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  line-height: 1.55;
  padding-left: 24px;
}

.about-qualifications li {
  margin-bottom: 6px;
}

/* ============================= */
/* Osteopathie Page              */
/* ============================= */

.osteopathy-page {
  background: #325442;
  min-height: calc(100vh - 140px);
  padding: 34px 40px 90px;
}

.osteopathy-top-label {
  display: block;
  width: fit-content;
  margin: 0 auto 20px auto;
  padding: 6px 16px;
  border-radius: 999px;
  background: #b7b899;
  color: #325442;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  text-decoration: none;
}

.osteopathy-top-label:hover {
  background: #325442;
  color: #f3e8d8;
  cursor: pointer;
}

.osteopathy-inner {
    background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 22px;
  max-width: 980px;
  margin: 0 auto;
}

.osteopathy-inner h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-decoration: underline;
  text-align: center;
  color: #b0b593;
  margin-bottom: 58px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.osteopathy-inner h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #b0b593;
  margin-top: 42px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.osteopathy-inner p {
  max-width: 900px;
  margin: 0 auto 26px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.35rem;
  line-height: 1.55;
  color: #f3e8d8;
}


/* ===================== */
/* Behandlungsspektrum   */
/* ===================== */

.spectrum-page {
  background: #325442;
  padding: 36px 40px 80px;
}

.spectrum-banner {
  max-width: 1200px;
  margin: 0 auto 36px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.20);
}

.spectrum-banner img {
  width: 100%;
  height: auto;
  display: block;
}


.spectrum-intro {
  /*max-width: 920px;
  margin: 0 auto 42px;
  padding: 26px 28px;
  background: #f3e8d8; 
  border-radius: 18px;

  box-shadow:
    0 10px 22px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.4);

  text-align: center;*/

    max-width: 920px;
  margin: 0 auto 42px;
  padding: 26px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  box-shadow: none;
  text-align: center;
}

.spectrum-intro p {
 /* font-family: "Times New Roman", Times, serif;
  font-size: 1.15rem;
  line-height: 1.7; 
   color: #2d2d2d;
  margin: 0 0 14px;*/
    font-family: "Times New Roman", Times, serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f3e8d8;
  margin: 0 0 14px;
}

.spectrum-intro p:last-child {
  margin-bottom: 0;
}

/* Trennung der Absätze */
.spectrum-intro p + p {
  margin-top: 10px;
}

/* Mobil */
@media (max-width: 768px) {
  .spectrum-intro {
    margin: 0 auto 28px;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .spectrum-intro p {
    font-size: 1.02rem;
    line-height: 1.6;
  }
}



.spectrum-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.spectrum-inner h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: #f3e8d8;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.spectrum-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.spectrum-item {
  display: flex;
  flex-direction: column;
}

.spectrum-card-toggle {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.spectrum-card-visual {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  background: #b7b899;
}

.spectrum-card-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.spectrum-card-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: block;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(50, 84, 66, 0.78);
  backdrop-filter: blur(4px);
  color: #f3e8d8;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.15rem;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

.spectrum-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  background: rgba(32, 52, 42, 0.88);
  color: #f3e8d8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  text-align: center;
}

.spectrum-card-overlay h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 14px;
}

.spectrum-card-overlay p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.spectrum-card-toggle:hover .spectrum-card-overlay,
.spectrum-card-toggle:focus-visible .spectrum-card-overlay {
  opacity: 1;
  visibility: visible;
}

.spectrum-card-toggle:hover .spectrum-card-title,
.spectrum-card-toggle:focus-visible .spectrum-card-title {
  opacity: 0;
}

.spectrum-collapsible {
  display: none;
}

/* ===================== */
/* Tablet                */
/* ===================== */

@media (max-width: 980px) {
  .spectrum-grid-enhanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===================== */
/* Mobil / Collapsible   */
/* ===================== */

@media (max-width: 768px) {
  .spectrum-page {
    padding: 28px 18px 60px;
  }

  .spectrum-inner h1 {
    font-size: 1.9rem;
    margin-bottom: 26px;
  }

  .spectrum-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .spectrum-card-overlay {
    display: none;
  }

  .spectrum-card-title {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 1.05rem;
    padding: 11px 14px;
  }

  .spectrum-collapsible {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .spectrum-collapsible-inner {
    background: #f3e8d8;
    color: #2d2d2d;
    margin-top: 10px;
    padding: 18px 16px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  }

  .spectrum-collapsible-inner h2 {
    font-family: "Times New Roman", Times, serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: #325442;
    margin-bottom: 10px;
  }

  .spectrum-collapsible-inner p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
  }

  .spectrum-item.is-open .spectrum-collapsible {
    max-height: 500px;
  }

  .spectrum-item.is-open .spectrum-card-title {
    background: rgba(50, 84, 66, 0.92);
  }
}

/* ============================= */
/* Kosten & Erstattung Page      */
/* ============================= */

.costs-page {
  background: #325442;
  min-height: calc(100vh - 140px);
  padding: 40px 0 80px;
}

.costs-banner {
  width: 100%;
  overflow: hidden;
}

.costs-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.costs-inner {
    background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 34px 0 80px;
  max-width: 960px;
  margin: 40px auto;
  text-align: center;
}

.costs-inner h1,
.costs-inner h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-decoration: underline;
  color: #b0b593;
  margin-bottom: 24px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.costs-inner h2 {
  margin-top: 40px;
}

.costs-inner p,
.costs-inner li {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #f3e8d8;
}

.costs-inner p {
  margin-bottom: 18px;
}

.costs-inner ul {
  max-width: 840px;
  margin: 0 auto;
  padding-left: 22px;
  text-align: left;
}

/* ============================= */
/* Kontakt Page                  */
/* ============================= */

.contact-intro,
.contact-patient-info,
.contact-details-section {
  background: #325442;
  padding-left: 40px;
  padding-right: 40px;
}

.contact-intro {
  padding-top: 34px;
  padding-bottom: 26px;
  text-align: center;
}

.contact-intro h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: underline;
  color: #b0b593;
  margin-bottom: 24px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.contact-intro p {
  max-width: 900px;
  margin: 0 auto 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #f3e8d8;
}

.contact-patient-info {
  padding-top: 14px;
  padding-bottom: 34px;
  text-align: center;
}

.contact-patient-info h2,
.contact-details-section h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-decoration: underline;
  text-align: center;
  color: #b0b593;
  margin-bottom: 24px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.contact-patient-info p {
  max-width: 900px;
  margin: 0 auto 14px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #f3e8d8;
}

.contact-details-section {
  padding-top: 10px;
  padding-bottom: 80px;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: flex-start;
}

.contact-text-block,
.contact-details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 22px;
}

.contact-text-block h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #b0b593;
  margin-bottom: 16px;
}

.contact-text-block p,
.contact-details p {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #f3e8d8;
  margin-bottom: 14px;
}

.contact-details iframe,
.contact-map iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  min-height: 320px;
}

/* ============================= */
/* Kontakt und Kosten / Links    */
/* ============================= */

.contact-inline-link,
.contact-details a,
.costs-link a {
  color: #ebd212;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.contact-inline-link:visited,
.contact-details a:visited,
.costs-link a:visited {
  color: #b9b28a;
  text-decoration-color: #b9b28a;
}

.contact-inline-link:hover,
.contact-details a:hover,
.costs-link a:hover {
  color: #f3e8d8;
  text-decoration-color: #f3e8d8;
}

.contact-inline-link:active,
.contact-details a:active,
.costs-link a:active {
  color: #8b957c;
  text-decoration-color: #8b957c;
}

.contact-details a {
  font-weight: 500;
  letter-spacing: 0.02em;
}


/* ===================== */
/* Blocksatz für Kontakt + Kosten */
/* ===================== */

.contact-intro p,
.contact-text-block p,
.costs-inner p {
  text-align: justify;
  hyphens: auto;
}

/* der Link-Absatz auf der Kosten-Seite soll zentriert bleiben */
.costs-inner p.costs-link {
  text-align: center;
}

/* Kontaktinfos unten lieber nicht im Blocksatz */
.contact-details p {
  text-align: left;
  hyphens: manual;
}

/* ============================= */
/* Rechtliches / Textseiten      */
/* ============================= */

.legal-page,
.text-page,
.simple-page {
  background: #325442;
  min-height: calc(100vh - 140px);
  padding: 34px 40px 90px;
}

/* ===================== */
/* Container */
/* ===================== */

.legal-inner,
.text-inner,
.simple-inner {
  max-width: 980px;
  margin: 0 auto;
}

/* ===================== */
/* Überschriften */
/* ===================== */

.legal-inner h1,
.legal-inner h2,
.text-inner h1,
.text-inner h2,
.simple-inner h1,
.simple-inner h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-decoration: underline;
  color: #b0b593;
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.legal-inner h2,
.text-inner h2,
.simple-inner h2 {
  margin-top: 38px;
}

/* ===================== */
/* Fließtext */
/* ===================== */

.legal-inner p,
.legal-inner li,
.text-inner p,
.text-inner li,
.simple-inner p,
.simple-inner li {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f3e8d8;
}

/* Blocksatz nur für Absätze */
.legal-inner p,
.text-inner p,
.simple-inner p {
  margin-bottom: 16px;
  text-align: justify;
  hyphens: auto;
}

/* Listen */
.legal-inner ul,
.text-inner ul,
.simple-inner ul {
  padding-left: 24px;
}

/* ===================== */
/* Links (nur Content!) */
/* ===================== */

.legal-inner a,
.text-inner a,
.simple-inner a {
  color: #ebd212;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.legal-inner a:visited,
.text-inner a:visited,
.simple-inner a:visited {
  color: #b9b28a;
  text-decoration-color: #b9b28a;
}

.legal-inner a:hover,
.text-inner a:hover,
.simple-inner a:hover {
  color: #f3e8d8;
  text-decoration-color: #f3e8d8;
}

.legal-inner a:active,
.text-inner a:active,
.simple-inner a:active {
  color: #8b957c;
  text-decoration-color: #8b957c;
}

.legal-inner p.legal-contact-block,
.text-inner p.legal-contact-block,
.simple-inner p.legal-contact-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.7;
  hyphens: manual;
}

.legal-inner p.legal-contact-block a,
.text-inner p.legal-contact-block a,
.simple-inner p.legal-contact-block a {
  word-break: break-word;
}


/* ============================= */
/* Responsive Layout             */
/* ============================= */

@media (max-width: 1100px) {
  .nav-shell {
    width: calc(100% - 30px);
  }

  .nav-item {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 0.95rem;
    padding: 0 12px;
    height: 72px;
  }

  .hero {
    padding: 60px 30px;
  }

  .hero-logo img {
    max-width: 300px;
  }

  .small-line {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }

  .hero-text h1,
  .subtitle {
    font-size: 1rem;
  }

  .termin-button {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stage {
    min-height: 620px;
  }

  .about-card {
    width: 58%;
    max-width: 500px;
    padding: 28px 22px 24px;
  }

  .about-card h1 {
    font-size: 1.9rem;
  }

  .about-card p {
    font-size: 0.98rem;
  }

  .about-image-wrap {
    width: 60%;
  }

  .about-qualifications h2 {
    font-size: 1.9rem;
  }

  .about-qualifications ul {
    font-size: 1.1rem;
  }

  .osteopathy-inner h1 {
    font-size: 2.4rem;
    letter-spacing: 0.16em;
    margin-bottom: 44px;
  }

  .osteopathy-inner h2 {
    font-size: 1.8rem;
    letter-spacing: 0.14em;
  }

  .osteopathy-inner p {
    font-size: 1.18rem;
    max-width: 860px;
  }

  .spectrum-banner img {
    /*height: 240px;*/
    height: auto;
  }

  .spectrum-inner h1 {
    font-size: 2.2rem;
    letter-spacing: 0.16em;
  }

  .spectrum-card {
    width: 250px;
    height: 250px;
  }

  .costs-page {
    /*padding: 18px 30px 0;*/
    padding: 12px 16px 40px;
  }

  .costs-banner img {
    height: 280px;
  }

  .costs-inner {
    max-width: 900px;
  }

  .costs-inner h1,
  .costs-inner h2 {
    font-size: 1.8rem;
  }

  .costs-inner p,
  .costs-inner li {
    font-size: 1.12rem;
  }

  .contact-intro,
  .contact-patient-info,
  .contact-details-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-intro h1 {
    font-size: 2.1rem;
    letter-spacing: 0.16em;
  }

  .contact-patient-info h2,
  .contact-details-section h2 {
    font-size: 1.9rem;
    letter-spacing: 0.16em;
  }

  .contact-text-block h3 {
    font-size: 1.45rem;
  }

  .contact-intro p,
  .contact-text-block p,
  .contact-details p {
    font-size: 1.08rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
  }

  .legal-page,
  .text-page,
  .simple-page {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 800px) {
  .hero-content {
    gap: 20px;
  }

  .hero-logo img {
    max-width: 240px;
  }

  .small-line {
    font-size: 1.7rem;
    letter-spacing: 0.12em;
  }

  .hero-text h1,
  .subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
  }

  .slider-arrow-left {
    left: 20px;
  }

  .slider-arrow-right {
    right: 20px;
  }

  .about-stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }

  .about-image-wrap,
  .about-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    left: auto;
    top: auto;
  }

  .about-image-wrap {
    order: 1;
  }

  .about-card {
    order: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .spectrum-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 800px) {
  .top-nav {
    padding: 0;
    min-height: 64px;
    justify-content: stretch; 
  }

.nav-shell {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    padding: 12px 14px;
    background:
      linear-gradient(
        to bottom,
        #537961 0%,
        #3f6b54 18%,
        #2f5c46 52%,
        #35684f 78%,
        #4a715a 100%
      );
  }

  .nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .nav-logo img {
    width: 62px;
    max-width: none;
  }

  .nav-item,
  .nav-dropdown {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
    margin-left: 0;
    flex-shrink: 0;
  }

  /*.nav-shell {
    width: 100%;
    min-height: 64px;
    border-radius: 0;
    padding: 0 10px;
    justify-content: flex-end;
    box-shadow: none;
  }*/

  .nav-shell > .nav-item,
  .nav-shell > .nav-dropdown {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 40px 20px;
    min-height: 60vh;
  }

  .hero-logo img {
    max-width: 180px;
  }

  .small-line,
  .hero-text h1,
  .subtitle {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .small-line {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }

  .hero-text h1,
  .subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .termin-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .testimonial-section {
    padding: 60px 20px;
    min-height: 360px;
  }

  .testimonial-track {
    min-height: 220px;
  }

  .testimonial-author {
    font-size: 1.2rem;
  }

  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 28px;
  }

  .slider-arrow {
    font-size: 2rem;
  }

  .slider-arrow-left {
    left: 8px;
  }

  .slider-arrow-right {
    right: 8px;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 0;
    padding: 30px 20px;
  }

  .patient-info {
    padding: 50px 20px 70px;
  }

  .patient-info h2 {
    font-size: 1.3rem;
  }

  .patient-info p {
    font-size: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .about-page {
    padding: 24px 18px 20px;
  }

  .about-top-label {
    font-size: 0.9rem;
    padding: 5px 12px;
  }

  .about-card {
    padding: 22px 18px 18px;
    border-width: 3px;
  }

  .about-card h1 {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }

  .about-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .about-qualifications {
    padding: 30px 18px 55px;
  }

  .about-qualifications h2 {
    font-size: 1.3rem;
  }

  .about-qualifications ul {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .osteopathy-page {
    padding: 24px 18px 60px;
  }

  .osteopathy-top-label {
    font-size: 0.9rem;
    padding: 5px 12px;
  }

  .osteopathy-inner h1 {
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
  }

  .osteopathy-inner h2 {
    font-size: 1.15rem;
    letter-spacing: 0.07em;
    margin-top: 28px;
    margin-bottom: 14px;
  }

  .osteopathy-inner p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .spectrum-banner img {
    /*height: 150px;*/
     height: auto;
  }

  .spectrum-inner {
    padding: 26px 18px 55px;
  }

  .spectrum-inner h1 {
    font-size: 1.35rem;
    letter-spacing: 0.08em;
  }

  .spectrum-grid,
  .spectrum-grid-bottom {
    gap: 16px;
  }

  .spectrum-card {
    width: 100%;
    max-width: 320px;
    height: 240px;
  }

  .spectrum-card span {
    font-size: 0.9rem;
    bottom: 14px;
  }

  .costs-page {
    /*padding: 12px 16px 0;*/
    padding: 12px 16px 40px;
  }

  .costs-banner img {
    height: 150px;
  }

  .costs-inner {
    padding: 24px 0 55px;
  }

  .costs-inner h1,
  .costs-inner h2 {
    font-size: 1.2rem;
  }

  .costs-inner p,
  .costs-inner li {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .contact-intro {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .contact-intro,
  .contact-patient-info,
  .contact-details-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-intro h1 {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
  }

  .contact-patient-info h2,
  .contact-details-section h2 {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }

  .contact-text-block h3 {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

  .contact-intro p,
  .contact-text-block p,
  .contact-details p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .contact-text-block,
  .contact-details {
    padding: 18px 16px;
  }

  .contact-details iframe,
  .contact-map iframe {
    min-height: 240px;
  }

  .legal-page,
  .text-page,
  .simple-page {
    padding: 24px 18px 60px;
  }

  .legal-inner h1,
  .legal-inner h2,
  .text-inner h1,
  .text-inner h2,
  .simple-inner h1,
  .simple-inner h2 {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
  }

  .legal-inner p,
  .legal-inner li,
  .text-inner p,
  .text-inner li,
  .simple-inner p,
  .simple-inner li {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}
/* ================================================== */
/* Vereinheitlichung Seiten-Typografie und Innenabstände */
/* Referenz Typografie: Kosten & Erstattung           */
/* Referenz Innenabstände: Osteopathie                */
/* ================================================== */

/* Einheitliche Außenbreiten / Seitenränder */
.about-page,
.osteopathy-page,
.costs-page,
.legal-page,
.text-page,
.simple-page {
  padding-left: 30px;
  padding-right: 30px;
}

.contact-intro,
.contact-patient-info,
.contact-details-section {
  padding-left: 30px;
  padding-right: 30px;
}

/* Einheitliche Boxbreiten */
.about-card,
.about-qualifications-inner,
.osteopathy-inner,
.costs-inner,
.contact-section-inner,
.legal-inner,
.text-inner,
.simple-inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Einheitliche Innenabstände der Boxen
   orientiert an osteopathy-inner / spectrum-inner */
.about-card,
.about-qualifications,
.osteopathy-inner,
.costs-inner,
.legal-inner,
.text-inner,
.simple-inner {
  padding: 26px 18px 55px;
}

.contact-text-block,
.contact-details {
  padding: 26px 18px 26px;
}

/* Kontakt-Einleitung bewusst etwas kompakter */
.contact-intro {
  padding-top: 26px;
  padding-bottom: 20px;
}

/* Kontakt-Sektionsabstände vereinheitlichen */
.contact-patient-info {
  padding-top: 14px;
  padding-bottom: 34px;
}

.contact-details-section {
  padding-top: 10px;
  padding-bottom: 60px;
}

/* Einheitliche Typografie wie bei Kosten & Erstattung */
.about-card h1,
.about-qualifications h2,
.osteopathy-inner h1,
.osteopathy-inner h2,
.costs-inner h1,
.costs-inner h2,
.contact-intro h1,
.contact-patient-info h2,
.contact-details-section h2,
.legal-inner h1,
.legal-inner h2,
.text-inner h1,
.text-inner h2,
.simple-inner h1,
.simple-inner h2 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  color: #b0b593;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
}

.about-card h1,
.about-qualifications h2,
.osteopathy-inner h1,
.osteopathy-inner h2,
.costs-inner h1,
.costs-inner h2,
.contact-intro h1,
.contact-patient-info h2,
.contact-details-section h2,
.legal-inner h1,
.legal-inner h2,
.text-inner h1,
.text-inner h2,
.simple-inner h1,
.simple-inner h2 {
  font-size: 2rem;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.about-card h1,
.osteopathy-inner h1,
.costs-inner h1,
.contact-intro h1,
.legal-inner h1,
.text-inner h1,
.simple-inner h1 {
  line-height: 1.35;
}

.about-qualifications h2,
.osteopathy-inner h2,
.costs-inner h2,
.contact-patient-info h2,
.contact-details-section h2,
.legal-inner h2,
.text-inner h2,
.simple-inner h2 {
  line-height: 1.35;
  margin-top: 40px;
}

.contact-text-block h3 {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #b0b593;
  margin-bottom: 16px;
}

.about-card p,
.about-qualifications li,
.osteopathy-inner p,
.costs-inner p,
.costs-inner li,
.contact-intro p,
.contact-patient-info p,
.contact-text-block p,
.contact-details p,
.legal-inner p,
.legal-inner li,
.text-inner p,
.text-inner li,
.simple-inner p,
.simple-inner li {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.15rem;
  line-height: 1.55;
}

.about-card p,
.osteopathy-inner p,
.costs-inner p,
.contact-intro p,
.contact-patient-info p,
.contact-text-block p,
.contact-details p,
.legal-inner p,
.text-inner p,
.simple-inner p {
  margin-bottom: 18px;
}

.about-qualifications ul,
.costs-inner ul,
.legal-inner ul,
.text-inner ul,
.simple-inner ul {
  max-width: 840px;
  margin: 0 auto;
  padding-left: 22px;
  text-align: left;
}

/* Kontakt-Grid leicht an die sonstigen Breiten angleichen */
.contact-grid {
  max-width: 960px;
  gap: 30px;
}

/* Mobil: Typografie wie Kosten & Erstattung, Innenabstände kompakt wie Osteopathie */
@media (max-width: 800px) {
  .about-page,
  .osteopathy-page,
  .costs-page,
  .legal-page,
  .text-page,
  .simple-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-intro,
  .contact-patient-info,
  .contact-details-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-card,
  .about-qualifications,
  .osteopathy-inner,
  .costs-inner,
  .legal-inner,
  .text-inner,
  .simple-inner {
    padding: 24px 18px 55px;
  }

  .contact-text-block,
  .contact-details {
    padding: 18px 16px;
  }

  .contact-intro {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .about-card h1,
  .about-qualifications h2,
  .osteopathy-inner h1,
  .osteopathy-inner h2,
  .costs-inner h1,
  .costs-inner h2,
  .contact-intro h1,
  .contact-patient-info h2,
  .contact-details-section h2,
  .legal-inner h1,
  .legal-inner h2,
  .text-inner h1,
  .text-inner h2,
  .simple-inner h1,
  .simple-inner h2 {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }

  .contact-text-block h3 {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .about-card p,
  .about-qualifications li,
  .osteopathy-inner p,
  .costs-inner p,
  .costs-inner li,
  .contact-intro p,
  .contact-patient-info p,
  .contact-text-block p,
  .contact-details p,
  .legal-inner p,
  .legal-inner li,
  .text-inner p,
  .text-inner li,
  .simple-inner p,
  .simple-inner li {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .contact-grid {
    max-width: 100%;
    gap: 22px;
  }
}


