    .button-with-icon {
      display: flex;
      align-items: center;
      justify-content: flex-start; /* Linksbündige Ausrichtung */
      padding: 14px 20px;
      background: linear-gradient(to right, #9e042d, #ff5e00);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0,
 0,
 0,
 0.1);
      transition: transform 0.2s ease,
 box-shadow 0.2s ease;
      text-align: left; /* Text linksbündig */
      height: 56px; /* Feste Höhe für alle Schaltflächen */
      width: 100%;
      max-width: 350px;
      line-height: 1.4;
      box-sizing: border-box; /* Wichtig: Padding wird in die Höhe einbezogen */
      text-decoration: none; /* Entfernt die Unterstreichung des Links */
    }

    .button-with-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,
 0,
 0,
 0.15);
    }

    .button-with-icon:active {
      transform: translateY(1px);
    }

    .button-with-icon i {
      margin-right: 12px;
      font-size: 20px;
      color: white;
      border: 2px solid rgba(255,
 255,
 255,
 0.7);
      border-radius: 50%;
      padding: 6px 8px;
      background-color: rgba(255,
 255,
 255,
 0.15);
      flex-shrink: 0;
    }

    /* Spezifische Anpassung für einzeiligen Text */
    .button-with-icon.single-line {
      height: 56px; /* Höhe für einzeiligen Text */
    }

    @media (max-width: 600px) {
      .button-with-icon {
        padding: 12px 16px;
        font-size: 15px;
      }
    }

    /* Anpassung für das Bild im <a>-Tag */
    .button-with-icon img {
      margin-right: 10px;
      width: 24px;
      height: 24px;
      border: 2px solid #ff5e00;
      border-radius: 50%;
      padding: 2px;
      background-color: rgba(255,
 255,
 255,
 0.1);
      flex-shrink: 0;
    }
