<style>
    :root{
      --green: #2f7a33;
      --green-dark: #256428;
      --bg: #f6fbf4;
      --text: #1f2a33;
      --muted: #5a6a75;
      --card: #ffffff;
      --line: rgba(0,0,0,0.08);
      --shadow: 0 10px 30px rgba(0,0,0,0.06);
      --radius: 16px;
      --max: 980px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    /* Skip link (Barrierearm) */
    .skip-link{
      position:absolute; left:-999px; top:auto;
      width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left: 12px; top: 12px; width:auto; height:auto;
      padding: 10px 12px;
      background: #fff;
      border: 2px solid var(--green);
      border-radius: 10px;
      z-index: 9999;
    }

    header {
      background: linear-gradient(120deg, var(--green), var(--green-dark));
      color: #fff;
      padding: 2.2rem 1rem 1.6rem;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    header .brand {
      max-width: var(--max);
      margin: 0 auto;
    }
    header h1 {
      margin: 0 0 0.3rem;
      font-size: clamp(1.6rem, 2.4vw, 2.2rem);
      letter-spacing: 0.2px;
    }
    header p {
      margin: 0;
      opacity: 0.95;
      font-size: 1.05rem;
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0.6rem 1rem;
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    nav a {
      color: var(--green-dark);
      text-decoration: none;
      font-weight: 700;
      padding: 0.55rem 0.75rem;
      border-radius: 999px;
    }
    nav a:hover,
    nav a:focus {
      background: rgba(47,122,51,0.10);
      outline: none;
    }

    main {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.hero-inner {
  max-width: 1000px;
  margin: auto;
}

    .card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      padding: 1.3rem;
    }

    h2 {
      margin: 0 0 0.6rem;
      font-size: 1.35rem;
    }

    .lead {
      color: var(--muted);
      margin-top: 0.2rem;
    }

    .grid {
      display: grid;
      gap: 1.2rem;
      grid-template-columns: 1fr;
    }

    .call-to-action {
      background: #e9f8e6;
      border: 1px solid rgba(47,122,51,0.25);
      border-left: 6px solid var(--green);
      padding: 1.1rem 1.1rem;
      border-radius: var(--radius);
    }
    .call-to-action strong{
      font-size: 1.15rem;
    }

    .pill-row{
      display:flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.8rem;
    }
    .pill{
      display:inline-block;
      background: rgba(47,122,51,0.10);
      border: 1px solid rgba(47,122,51,0.20);
      color: var(--green-dark);
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
    }
    .pill:hover, .pill:focus{
      background: rgba(47,122,51,0.16);
      outline: none;
    }

    .contact {
      background: #f7faf7;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.1rem;
    }
    .contact a { color: var(--green-dark); font-weight: 700; text-decoration: none; }
    .contact a:hover { text-decoration: underline; }

    footer {
      text-align: center;
      padding: 1.4rem 1rem 2rem;
      color: var(--muted);
      font-size: 0.95rem;
    }
    footer a{
      color: var(--muted);
      text-decoration: underline;
    }

    /* bessere Lesbarkeit auf größeren Screens */
    .prose p { max-width: 75ch; }

    @media (min-width: 860px){
      .grid {
        grid-template-columns: 2fr 1fr;
        align-items: start;
      }
      .card { padding: 1.6rem; }
    }
    /* HERO MIT LOGO */
.hero {
  background: linear-gradient(120deg, #2f7a33, #256428);
  color: white;
  padding: 2.5rem 1rem;
}

.hero-inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text h1 {
  margin: 0;
  font-size: 2rem;
}

.hero-text p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  opacity: 0.95;
}
  </style>
