@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

@media (max-width:460px) {
    .hero-title {
        font-size: 25px!important;
        margin-top:30px;
    }
    p{
        font-size: 15px!important;
    }
}

body.poster {
    background-attachment: fixed;
}

p{
  font-size:20px;
}

.top-5 {
    top: 5px;
}

.about-image {
        max-width: 200px;
        margin-bottom: 10px;
        border-radius:150px;
}

.hero {
  min-height: 95vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
              url('assets/images/20343.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-img {
  max-width: 85%;
}
s

.testimonials {
  background: #f8f9fa;
}

.testimonials h2 {
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* Pricing cards – clean, tactile look */
  #preise .price-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: .9rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    background: #fff;
  }
  #preise .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08);
    border-color: rgba(13,110,253,.25);
  }
  #preise .price-card.recommended {
    transform: translateY(-2px);
  }
     /* Custom minimal styles for a polished look */
  #kernleistungen .service-card {
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    border-radius: .85rem;
    background: #fff;
  }
  #kernleistungen .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.08);
    border-color: rgba(13,110,253,.25); /* primary tint */
  }
  #kernleistungen .icon-wrap {
    line-height: 1;
    flex: 0 0 auto;
  }
  #kernleistungen .icon-wrap .bi {
    display: inline-block;
  }
  @media (min-width: 992px) {
    #kernleistungen .card-body { padding: 2rem; }
  }


  :root {
    --tfh-bg: #0f172a;          /* slate-900 */
    --tfh-surface: #0b1224;     /* deep surface */
    --tfh-ink: #e5e7eb;         /* gray-200 */
    --tfh-muted: #9ca3af;       /* gray-400 */
    --tfh-border: #1f2937;      /* gray-800 */
    --tfh-accent: #7c3aed;      /* violet-600 */
    --tfh-accent-2: #22c55e;    /* green-500 */
    --tfh-shadow: 0 10px 30px rgba(2, 6, 23, .45);
    --tfh-radius: 18px;
    --tfh-maxw: 1200px;
  }

  @media (prefers-color-scheme: light) {
    :root {
      --tfh-bg: #f8fafc;        /* slate-50 */
      --tfh-surface: #ffffff;
      --tfh-ink: #0f172a;       /* slate-900 */
      --tfh-muted: #475569;     /* slate-600 */
      --tfh-border: #e5e7eb;    /* gray-200 */
      --tfh-shadow: 0 12px 36px rgba(2, 6, 23, .10);
      --tfh-accent: #c85900;
      --tfh-accent-2: #c85900;
    }
  }

  .tfh-pricing {
    background:
      radial-gradient(1100px 520px at 0% -10%, rgba(124,58,237,.16), transparent 60%),
      radial-gradient(900px 480px at 100% 10%, rgba(34,197,94,.12), transparent 60%),
      var(--tfh-bg);
    color: var(--tfh-ink);
    border-top: 1px solid var(--tfh-border);
    border-bottom: 1px solid var(--tfh-border);
    padding: clamp(48px, 6vw, 96px) 16px;
  }

  .tfh-pricing__container { max-width: var(--tfh-maxw); margin: 0 auto; }

  .tfh-pricing__header { text-align: center; margin-bottom: clamp(24px, 4vw, 48px); }
  .tfh-pricing__eyebrow {
    text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--tfh-muted); margin: 0 0 8px;
  }
  .tfh-pricing__title { font-size: clamp(28px, 5vw, 40px); line-height: 1.1; margin: 0 0 10px; }
  .tfh-pricing__subtitle {
    margin: 0 auto; max-width: 62ch; color: var(--tfh-muted); font-size: clamp(15px, 2.3vw, 18px);
  }

  .tfh-pricing__grid {
    display: grid;
    gap: clamp(14px, 2.2vw, 22px);
    grid-template-columns: repeat(3, 1fr);
    list-style: none; padding: 0; margin: 0;
  }
  @media (max-width: 1024px) { .tfh-pricing__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 680px)  { .tfh-pricing__grid { grid-template-columns: 1fr; } }

  .tfh-card {
    position: relative;
    background:
      linear-gradient(180deg, var(--tfh-surface), transparent 140%),
      rgba(17, 24, 39, .12);
    border: 1px solid var(--tfh-border);
    border-radius: var(--tfh-radius);
    padding: 22px 18px;
    box-shadow: var(--tfh-shadow);
    display: flex; flex-direction: column; gap: 12px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .tfh-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(124,58,237,.22); border-color: rgba(124,58,237,.35); }
  .tfh-card--featured { outline: 2px solid #c85900; outline-offset: 0; }

  .tfh-card__ribbon {
    position: absolute; top: 12px; right: 12px;
    font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
    background: rgba(148,163,184,.12); color: var(--tfh-muted);
    padding: 6px 8px; border-radius: 999px; border: 1px dashed var(--tfh-border);
  }
  .tfh-card__ribbon--accent { background: rgba(124,58,237,.18); color: #f5f3ff; border-color: #c85900; }

  .tfh-card__title { font-size: 20px; margin: 6px 0 0; }
  .tfh-card__desc  { color: var(--tfh-muted); margin: 0; min-height: 44px; }

  .tfh-price { margin: 6px 0 4px; display: flex; align-items: baseline; gap: 8px; }
  .tfh-price__value  { font-size: 30px; font-weight: 800; line-height: 1; }
  .tfh-price__suffix { font-size: 14px; opacity: .9; }
  .tfh-price__note   { font-size: 12px; color: var(--tfh-muted); }

  .tfh-list { margin: 10px 0 6px; padding: 0 0 0 18px; display: grid; gap: 6px; }
  .tfh-list li { line-height: 1.55; }

  .tfh-btn {
    margin-top: auto;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none; font-weight: 700; letter-spacing: .01em;
    padding: 11px 14px; border-radius: 12px; color: #fff;
    background: #f67004;
    box-shadow: 0 10px 30px #f67004;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
  }
  .tfh-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
  .tfh-btn:active { transform: translateY(0); }

  .tfh-btn--accent {
    background: #f67004;
    box-shadow: 0 10px 30px #f67004;
  }

  .tfh-pricing__fineprint {
    margin-top: 14px; color: var(--tfh-muted); font-size: 13px; text-align: center;
  }

  @media (prefers-reduced-motion: reduce) {
    .tfh-card, .tfh-btn { transition: none; }
  }


  @media(max-width:680px){
    .h5{
      font-size:17px;
    }
  }