.registration_steps {
  color: #ede7db;
}

.section_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--green, #7aad9e);
}

.steps_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 20px;
  row-gap: 40px;
}

.step_card {
  background: #fefcf8;
  padding: 25px 20px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step_number {
  position: absolute;
  top: -18px;
  left: 20px;
  background: linear-gradient(135deg, #55876f, #8daf9f);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 0 4px #8daf9f;
}

.step_card h4 {
  font-size: 19px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.step_card p {
  margin-bottom: 0px !important;
}
