.lp-steps {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.lp-steps h2 {
  font-size: 2.3em;
  color: #10195c;
  margin-bottom: 50px;
}

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

.lp-step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}

.lp-step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3c5fd7, #10195c);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 800;
  margin: 0 auto 20px;
}

.lp-step h3 {
  color: #10195c;
  margin: 0 0 10px;
  font-size: 1.2em;
}

.lp-step p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.lp-step-arrow {
  display: flex;
  align-items: center;
  color: #3c5fd7;
  font-size: 2em;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .lp-step-arrow {
    display: none;
  }

  .lp-steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .lp-step {
    text-align: center;
    width: 100%;
    max-width: 320px;
  }

  .lp-step-num {
    margin: 0 auto 12px auto;
  }
}
