    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-green: #8FE45A;
      --primary-green-dark: #75C846;
      --primary-green-light: #D4F5BE;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #000;
      color: #fff;
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, p, button, input, textarea,
    .info-title, .map-title, .footer-link, .footer-description,
    .logo-text-main, .logo-text-sub {
      font-family: 'Inter', sans-serif;
    }

    * {
      word-wrap: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
    }

    h1 {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.1;
    }

    h2 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.2;
    }

    h3 {
      font-size: 1.5rem;
      font-weight: 600;
    }

    p {
      font-size: 1rem;
      line-height: 1.6;
    }

    button {
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-100px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      animation: fadeInDown 0.6s ease-out;
    }

    .nav-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      cursor: pointer;
      text-decoration: none;
      opacity: 0;
      animation: fadeIn 0.6s ease-out 0.2s forwards;
    }

    .logo-icon {
      padding: 0.5rem;
      border-radius: 0.5rem;
      background: linear-gradient(to bottom right, var(--primary-green), var(--primary-green-dark));
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text-main {
      letter-spacing: 0.05em;
      font-size: 0.875rem;
      color: white;
    }

    .logo-text-sub {
      letter-spacing: 0.1em;
      color: var(--primary-green);
      margin-top: -0.25rem;
      font-size: 0.875rem;
    }

    .back-button {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0.5rem;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
      opacity: 0;
      animation: fadeIn 0.6s ease-out 0.4s forwards;
    }

    .back-button:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateX(-5px);
    }

    /* Hero Header */
    .hero-header {
      position: relative;
      padding: 8rem 1.5rem 4rem;
      background: linear-gradient(to bottom, #000, #030712);
      overflow: hidden;
    }

    .hero-header-bg {
      position: absolute;
      inset: 0;
      opacity: 0.05;
      background-image: radial-gradient(circle at 1px 1px, rgba(106, 180, 45, 0.3) 1px, transparent 0);
      background-size: 50px 50px;
    }

    .hero-header-content {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-badge {
      display: inline-block;
      margin-bottom: 1.5rem;
      padding: 0.5rem 1.5rem;
      background: linear-gradient(to right, rgba(106, 180, 45, 0.2), rgba(90, 156, 37, 0.2));
      border: 1px solid rgba(106, 180, 45, 0.3);
      border-radius: 9999px;
      backdrop-filter: blur(8px);
      letter-spacing: 0.1em;
      color: var(--primary-green);
      font-size: 0.875rem;
      opacity: 0;
      animation: fadeInUp 0.8s ease-out 0.3s forwards;
    }

    .hero-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      margin-bottom: 1rem;
      background: linear-gradient(to right, white, var(--primary-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      opacity: 0;
      animation: fadeInUp 0.8s ease-out 0.5s forwards;
    }

    .hero-description {
      color: #9ca3af;
      font-size: 1.125rem;
      max-width: 48rem;
      margin: 0 auto 2rem;
      opacity: 0;
      animation: fadeInUp 0.8s ease-out 0.7s forwards;
    }

    .last-updated {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.5rem;
      color: #d1d5db;
      font-size: 0.875rem;
      opacity: 0;
      animation: fadeInUp 0.8s ease-out 0.9s forwards;
    }

    /* Content Section */
    .content-section {
      position: relative;
      padding: 4rem 1.5rem 8rem;
      background: #000;
    }

    .content-container {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Table of Contents */
    .toc-card {
      margin-bottom: 3rem;
      padding: 2rem;
      background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.5), rgba(0, 0, 0, 0.5));
      border: 1px solid #1f2937;
      border-radius: 1rem;
      animation: fadeInUp 0.8s ease-out 0.5s backwards;
    }

    .toc-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.25rem;
      color: var(--primary-green);
      margin-bottom: 1.5rem;
    }

    .toc-grid {
      display: grid;
      grid-auto-flow: column;
      grid-template-rows: repeat(8, auto);
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }

    .toc-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 0.5rem;
      color: #d1d5db;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .toc-item:hover {
      background: rgba(106, 180, 45, 0.1);
      border-color: var(--primary-green);
      color: var(--primary-green);
      transform: translateX(10px);
    }

    .toc-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      background: rgba(106, 180, 45, 0.1);
      border-radius: 0.375rem;
      color: var(--primary-green);
      font-weight: 600;
      font-size: 0.875rem;
      flex-shrink: 0;
    }

    /* AGB Section */
    .agb-section {
      margin-bottom: 3rem;
      padding: 2.5rem;
      background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.3), rgba(0, 0, 0, 0.3));
      border: 1px solid #1f2937;
      border-radius: 1rem;
      transition: all 0.3s ease;
      animation: fadeInUp 0.8s ease-out backwards;
    }

    .agb-section:hover {
      border-color: rgba(106, 180, 45, 0.3);
      box-shadow: 0 10px 40px rgba(106, 180, 45, 0.1);
    }

    .agb-section:nth-child(1) { animation-delay: 0.1s; }
    .agb-section:nth-child(2) { animation-delay: 0.15s; }
    .agb-section:nth-child(3) { animation-delay: 0.2s; }
    .agb-section:nth-child(4) { animation-delay: 0.25s; }
    .agb-section:nth-child(5) { animation-delay: 0.3s; }
    .agb-section:nth-child(6) { animation-delay: 0.35s; }
    .agb-section:nth-child(7) { animation-delay: 0.4s; }
    .agb-section:nth-child(8) { animation-delay: 0.45s; }

    .agb-header {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid rgba(106, 180, 45, 0.2);
    }

    .agb-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      background: linear-gradient(to bottom right, var(--primary-green), var(--primary-green-dark));
      border-radius: 0.75rem;
      color: #000;
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .agb-title {
      flex: 1;
      color: white;
      font-size: 1.75rem;
      margin-top: 0.25rem; /* Text leicht nach unten verschieben */
    }

    .agb-content {
      color: #d1d5db;
      line-height: 1.8;
    }

    .agb-subsection {
      margin-bottom: 1.25rem;
      padding-left: 1.5rem;
    }

    .agb-subsection-title {
      color: var(--primary-green);
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center; /* Icon auf gleiche Höhe mit Text */
      gap: 0.5rem;
    }

    .agb-subsection-title::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--primary-green);
      border-radius: 50%;
    }

    .agb-text {
      margin-bottom: 0.75rem;
      text-align: justify;
    }

    /* Note Section */
    .note-section {
      margin-top: 4rem;
      padding: 2rem;
      background: linear-gradient(to bottom right, rgba(106, 180, 45, 0.1), rgba(0, 0, 0, 0.5));
      border: 1px solid rgba(106, 180, 45, 0.3);
      border-radius: 1rem;
      animation: fadeInUp 0.8s ease-out 0.5s backwards;
    }

    .note-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      color: var(--primary-green);
      font-weight: 600;
    }

    .note-content {
      color: #d1d5db;
      line-height: 1.8;
    }

    /* Footer */
    footer {
      position: relative;
      background: #000;
      border-top: 1px solid #1f2937;
      padding: 3rem 1.5rem;
    }

    .footer-glow {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 24rem;
      height: 0.25rem;
      background: linear-gradient(to right, transparent, var(--primary-green), transparent);
      opacity: 0.5;
    }

    .footer-container {
      position: relative;
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .footer-description {
      color: #9ca3af;
      margin-bottom: 1.5rem;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .footer-link {
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: var(--primary-green);
    }

    .footer-copyright {
      padding-top: 2rem;
      border-top: 1px solid #1f2937;
      color: #6b7280;
      font-size: 0.875rem;
    }

    /* Responsive */
    @media (min-width: 640px) {
      .toc-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, auto);
      }
    }

    @media (min-width: 768px) {
      .toc-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(8, auto);
      }
    }

    /* Scroll to top button */
    .scroll-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 3rem;
      height: 3rem;
      background: linear-gradient(to bottom right, var(--primary-green), var(--primary-green-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      cursor: pointer;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 999;
      box-shadow: 0 4px 12px rgba(106, 180, 45, 0.4);
    }

    .scroll-top.visible {
      opacity: 1;
    }

    .scroll-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(106, 180, 45, 0.6);
    }

    .toc-hint {
      display: none;
    }
    /* Anpassungen für kleine Bildschirme */
    @media (max-width: 640px) {
      .agb-section {
        padding: 1.25rem;
        padding-left: 0.75rem;
      }
      .note-section {
        padding: 1rem;
        padding-left: 0.75rem;
      }
      .toc-card {
        padding: 1.25rem;
        padding-left: 0.75rem;
      }

      .toc-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        white-space: nowrap;
        scrollbar-width: thin;
      }

      .toc-item {
        flex: 0 0 auto;
        min-width: 180px;
      }

      .toc-hint {
        margin-top: 0.75rem;
        text-align: center;
        color: #9ca3af;
        font-size: 0.85rem;
        opacity: 0.8;
        display: block;
      }

      .toc-hint-arrows {
        display: block;
        font-size: 1rem;
        margin-top: 0.25rem;
      }
    }
  