
.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 14px 0 10px;
  }
  
  .service-card p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
  }
  
  /* WARUM WIR */
  .why {
    padding: 80px 40px;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  
  .why-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .why-inner > h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0 0 40px;
    text-align: center;
  }
  
  .why-item {
    padding: 12px 20px;
  }
  
  .why-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 0 0 8px;
  }
  
  .why-item p {
    font-size: 15.5px;
    color: var(--color-text-mutedmore);
    line-height: 1.6;
    margin: 0;
  }
  
  /* EINZUGSGEBIET */
  .area {
    padding: 72px 40px;
    text-align: center;
  }
  
  .area h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0 0 12px;
  }
  
  .area p {
    font-size: 17px;
    color: var(--color-text-mutedmore);
    margin: 0;
  }
  
  /* UEBER UNS */
  .about {
    padding: 80px 40px;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
  }
  
  .about-inner {
    max-width: 680px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .about-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0;
  }
  
  .about-inner p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
  }
  
  /* FOOTER */
  .site-footer {
    padding: 48px 40px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-heading);
  }
  
  .footer-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .footer-actions ion-button {
    --padding-start: 24px;
    --padding-end: 24px;
  }
  
  .footer-actions ion-button[fill="outline"] {
    --border-color: var(--color-outline);
    --color: oklch(0.9 0.01 155);
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .toolbar {
      --padding-start: 20px;
      --padding-end: 20px;
    }
  
    .hero,
    .services,
    .why,
    .area,
    .about,
    .site-footer {
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .hero-title {
      font-size: 38px;
    }
  }
  
  @media (max-width: 600px) {
    .brand,
    .nav-end {
      height: auto;
    }
  
    .nav-link {
      display: none;
    }
  
    .hero {
      padding: 72px 20px 64px;
    }
  
    .hero-title {
      font-size: 32px;
    }
  
    .hero-text {
      font-size: 17px;
    }
  
    .services,
    .why,
    .about {
      padding: 56px 20px;
    }
  
    .area {
      padding: 48px 20px;
    }
  
    .site-footer {
      padding: 40px 20px;
      justify-content: center;
      text-align: center;
    }
  }