  <style>
    body {
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      color: #222;
      margin: 0;
      padding: 0;
    }

    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: #222;
      color: white;
      padding: 12px 16px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      max-width: 600px;
      width: calc(100% - 40px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      z-index: 1000;
    }

    .cookie-buttons {
      display: flex;
      gap: 0.5rem;
    }

    .cookie-banner button {
      background: #00664d;
      border: none;
      color: white;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
    }

    .cookie-banner button.secondary {
      background: #555;
    }

    .video-placeholder {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      border-radius: 8px;
      aspect-ratio: 16 / 9;
    }

    .video-placeholder img {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 8px;
    }

    /* overlay */
    .video-placeholder::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0);
      pointer-events: none;
    }

    /* play button */
    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* triangle */
    .play-button::before {
      content: "";
      border-style: solid;
      border-width: 12px 0 12px 18px;
      border-color: transparent transparent transparent white;
      margin-left: 3px;
    }

    .highlight {
      color: #00664d;
      font-weight: 600;
    }

    .container h2 {
      padding-top: 2rem;
      margin-top: 4rem;
    }

    .metrics {
      font-size: 1.15rem;
      line-height: 1.8;
      margin-top: 1rem;
    }

    .container h2:first-of-type {
      margin-top: 0;
      padding-top: 0;
    }

    .video-row {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .video {
      flex: 1 1 400px;
      text-align: center;
    }

    .video h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .video-placeholder iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .top-banner {
      background: #ffcccc;
      color: #990000;
      font-weight: bold;
      padding: 1rem;
      font-size: 1.8rem;
      text-align: center;
    }

    .hero {
      background-image: url('Titelbild.png');
      background-size: cover;
      background-position: center;
      position: relative;
      color: white;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 2rem;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }

    .hero p {
      font-size: 1.1rem;
      margin-top: 0.5rem;
      line-height: 1.4;
    }

    .gray-text {
      color: #dddddd;
      display: block;
    }

    .green-highlight {
      color: #90ee90;
      font-style: italic;
      display: block;
    }

    .phone-banner {
      background: #b6e2c6;
      color: #004d26;
      font-size: 1.2rem;
      padding: 0.9rem;
      text-align: center;
      margin: 0;
      white-space: nowrap;
    }

    .phone-banner span {
      font-weight: bold;
      display: inline;
    }

    nav {
      background: #00664d;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0.8rem 1rem;
      box-shadow: 0 1px 2px rgba(0,0,0,0.05);
      position: relative;
      z-index: 10;
    }

    nav a {
      margin: 0 1rem;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
    }

    .container {
      max-width: 900px;
      margin: 2rem auto;
      background: white;
      padding: 2rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      border-radius: 8px;
    }

    h2 {
      color: #004d40;
      margin-top: 3rem;
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

    h3, h4 {
      color: #004d40;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    p {
      margin-bottom: 1.2rem;
    }

    ul {
      padding-left: 1.2rem;
      margin-bottom: 1.5rem;
    }

    li {
      margin-bottom: 0.5rem;
    }

    a {
      color: #004d26;
      text-decoration: none;
    }

    .icon {
      font-size: 1.2rem;
      margin-right: 0.5rem;
    }

    .kontakt-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .kontakt-block {
      flex: 1 1 300px;
    }

    .highlight-red {
      color: #cc0000;
      font-weight: bold;
    }

    footer {
      text-align: center;
      font-size: 0.9rem;
      color: #666;
      margin: 3rem 0;
      padding-top: 2rem;
    }

    footer img {
      max-height: 50px;
      margin-bottom: 1rem;
    }

    footer p {
      margin: 0.5rem 0;
    }

    footer a {
      margin: 0 10px;
      display: inline-block;
      margin-top: 10px;
    }


    @media (max-width: 600px) {
      nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        padding: 0.8rem 1rem;
      }

      nav a {
        flex: 0 0 auto;
        margin: 0 0.6rem;
        white-space: nowrap;
        font-size: 0.85rem;
      }

      .container {
        margin: 1rem auto;
        padding: 1.5rem 1rem;
        border-radius: 0; /* full-width feel */
      }

      footer {
        margin: 1.5rem 0;
        padding-top: 1rem;
      }

      .container h2 {
        margin-top: 2rem;
        padding-top: 1rem;
      }

      body {
        font-size: 15px;
      }

      .video-row {
        gap: 1rem;
      }

      .video h3 {
        font-size: 1.2rem;
      }

      .phone-banner {
        background: #b6e2c6;
        color: #004d26;
        font-size: 1.1rem;
        padding: 0.9rem;
        text-align: center;
        margin: 0;
        white-space: nowrap;
        overflow-x: auto;
      }
      .hero {
        padding: 2.5rem 1rem;
      }

      .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
      }

      .hero p {
        font-size: 0.95rem;
      }
      .nav-wrapper {
        position: relative;
        background: #00664d;
      }

      nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        padding: 0.8rem 0.5rem;
      }

      /* fade edges now attached to wrapper (NOT scrolling) */
      .nav-wrapper::before,
      .nav-wrapper::after {
        content: ">";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 40px;
        pointer-events: none;
        z-index: 3;
      }

      .nav-wrapper::before {
        left: 0;
        background: linear-gradient(to right, #00664d 30%, rgba(0,102,77,0));
      }

      .nav-wrapper::after {
        right: 0;
        background: linear-gradient(to left, #00664d 30%, rgba(0,102,77,0));
      }
    }

</style>
