
/* ========== Help-Content ========== */
/* .help-main {
  gap: 35px;
  margin-top: 106px;
  padding-bottom: 100px;
} */

.help-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 35px;
  margin-top: 106px;
  max-width: 1016px;
  padding-bottom: 100px;
}

.help-headline {
  font-weight: 700;
  font-size: 61px;
}

.help-link {
  color: #4589ff;
  font-weight: 400;
  text-decoration: none;
}

.help-intro,
.help-paragraph {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  margin: 0;
}

.help-section-headline {
  font-size: 27px;
  font-weight: 700;
}

.help-end-headline {
  font-size: 27px;
  font-weight: 700;
}

.help-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Nummerierte Liste */
.help-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 16px;

  font-size: 16px;
  line-height: 1.4;
  color: #000;
}

.help-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.help-list-number {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  min-width: 20px;
  color: #000;
}

.help-list-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.help-list-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}

.help-list-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}

.help-back-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.8;
  display: block;
}

.help-back-btn img:hover {
  opacity: 1;
}

/* ========== Responsive: Mobile ========== */
/* An Handy-Größe anpassen – kannst du bei Bedarf die Breite anpassen */

@media (max-width: 900px) {
  .help-main {
    padding: 24px 16px 96px 16px; /* extra Platz nach unten für Bottom-Nav */
    align-items: stretch;
  }

  .help-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .help-headline {
    font-size: 32px;
  }
}

/* ========== Optional: sehr kleine Screens ========== */
@media (max-width: 480px) {
  .help-main {
    padding: 16px 12px 96px 12px;
  }

  .help-headline {
    font-size: 28px;
  }
}


