.howto-section {
  padding: 80px 20px;
  background-color: #f0f6ff;
  position: relative;
  overflow: hidden;
}

.howto-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.howto-title {
   font-size: 1.5rem;
  font-weight: bold;
  color: #002093;
  margin-bottom: 10px;
}

.howto-subline {
  font-size: 1rem;
  color: #1d92df;
  margin-bottom: 50px;
  font-weight: 600;
}

.howto-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.howto-step {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  width: 340px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.howto-step:nth-child(2) {
  animation-delay: 0.1s;
}
.howto-step:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.howto-step-number {
  font-size: 2.8em;
  color: #1d92df;
  font-weight: bold;
  margin-bottom: 10px;
}

.howto-step-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #002093;
  margin-bottom: 10px;
}

.howto-step-text {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .howto-steps {
    flex-direction: column;
    align-items: center;
  }

  .howto-step {
    width: 90%;
  }
}

@media (max-width: 500px) {
  .howto-section {
    padding: 60px 10px;
  }

  .howto-step {
    padding: 30px 20px;
  }

  .howto-step-number {
    font-size: 2.2em;
  }
}
