.how-it-works .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.steps-container {
  margin-top: 2.5rem;
}

.step-item {
  display: flex;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ed9134;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.step-content p,
.step-content ul {
  margin-bottom: 1rem;
  color: #555;
}

.step-content li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
  margin-left: 1.5rem;
}

.step-highlight {
  background-color: rgba(237, 145, 52, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ed9134;
  margin-top: 1rem;
}

.step-highlight i {
  color: #ed9134;
  margin-right: 0.5rem;
}

/* Estilos responsivos */
@media screen and (max-width: 768px) {
  .step-item {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 1rem;
  }
}
