.step-component {
  background: #fff;
  padding: 20px;
  margin: 0;
}

.step-component img {
  width: 48px;
}

.step-component h2 {
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  color: #0c276e;
}

.step-component .steps-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.step-component .step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  gap: 20px;
}
.step-component .step:hover {
  transform: translateY(-2px);
}
.step-component .step-left {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 30%;
  flex-shrink: 0;
}
.step-component .step-left svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}
.step-component .step-left h3 {
  margin: 0;
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.step-component .step-right {
  flex: 1;
  margin-left: auto;
}
.step-component .step-right p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.step-component .black {
  background: #d1f2e8;
  color: #0c276e;
}
.step-component .white {
  background: #fafdff;
  color: #0c276e;
}
@media (max-width: 700px) {
  .step-component .step {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-component .step-left {
    margin-bottom: 10px;
    width: 100%;
  }
}