    body {
      margin: 0;
      font-family: "Inter", system-ui, sans-serif;
      background: #0a0c12;
      color: #e5e7eb;
      line-height: 1.7;
    }

    header {
      padding: 22px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #0f1118;
      border-bottom: 1px solid #1a1d27;
    }

    header h1 {
      margin: 0;
      font-size: 20px;
      font-weight: 600;
      color: #d1d5db;
      letter-spacing: 0.03em;
    }

    nav a {
      color: #9ca3af;
      margin-left: 22px;
      text-decoration: none;
      font-size: 14px;
      transition: 0.2s;
    }

    nav a:hover {
      color: #fff;
    }

    .hero {
      padding: 90px 24px 70px;
      text-align: center;
      max-width: 850px;
      margin: 0 auto;
    }

    .hero h2 {
      font-size: 36px;
      margin-bottom: 16px;
      font-weight: 700;
      background: linear-gradient(135deg, #4f46e5, #22c55e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero p {
      font-size: 17px;
      color: #9ca3af;
      max-width: 650px;
      margin: 0 auto 26px;
    }

    .btn {
      display: inline-block;
      padding: 12px 26px;
      border-radius: 999px;
      background: linear-gradient(135deg, #4f46e5, #22c55e);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      margin-top: 12px;
      box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
      transition: 0.2s;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 35px rgba(79, 70, 229, 0.55);
    }

    .section {
      padding: 60px 24px;
      max-width: 1050px;
      margin: 0 auto;
    }

    .section h3 {
      font-size: 24px;
      margin-bottom: 12px;
      font-weight: 600;
      color: #d1d5db;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
      margin-top: 24px;
    }

    .card {
      background: #0f1118;
      padding: 22px;
      border-radius: 16px;
      border: 1px solid #1a1d27;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    }

    .card h4 {
      margin-top: 0;
      font-size: 17px;
      font-weight: 600;
      color: #e2e8f0;
    }

    .card p {
      color: #9ca3af;
      font-size: 14px;
      margin-top: 6px;
    }

    .price-box {
      background: #0f1118;
      border: 1px solid #1a1d27;
      border-radius: 18px;
      padding: 36px;
      text-align: center;
      max-width: 420px;
      margin: 50px auto;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    }

    .price-box h3 {
      margin: 0 0 10px;
      font-size: 24px;
      font-weight: 600;
    }

    .price {
      font-size: 40px;
      font-weight: 700;
      margin: 14px 0;
      background: linear-gradient(135deg, #4f46e5, #22c55e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .subprice {
      font-size: 16px;
      color: #9ca3af;
      margin-top: -8px;
    }

    footer {
      padding: 28px;
      text-align: center;
      color: #6b7280;
      border-top: 1px solid #1a1d27;
      margin-top: 50px;
      font-size: 13px;
    }
   .mail {
   unicode-bidi: bidi-override;
   direction: rtl;
   }
   .impressum {
   unicode-bidi: bidi-override;
   direction: rtl;
   transition: all 0.2s ease;
   cursor: pointer;
   }
   .impressum:hover {
   direction: ltr;
   }
