.step-wrapper {
  max-width: 1200px;
  margin: 50px auto;
}

.step-hero {
  text-align: center;
  margin-bottom: 80px;
}

.step-hero-tag {
  font-family: "Manrope", sans-serif;
  color: #1c4d8d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.step-hero-title {
  font-family: "Manrope", sans-serif;
  color: #0f2854;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.step-timeline-container {
  position: relative;
}

.step-timeline-line {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #bde8f5, #4988c4);
}

.step-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.step-row:last-child {
  margin-bottom: 0;
}

.step-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4988c4, #1c4d8d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(73, 136, 196, 0.3);
  z-index: 2;
}

.step-marker::after {
  content: "";
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
}

.step-left-side,
.step-right-side {
  width: 45%;
}

.step-left-side {
  padding-right: 60px;
  text-align: right;
}

.step-right-side {
  margin-left: auto;
  padding-left: 60px;
}

.step-image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 40, 84, 0.1);
  height: 280px;
}

.step-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-text-block h2 {
  font-family: "Manrope", sans-serif;
  color: #0f2854;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-description {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.step-link-more {
  display: inline-block;
  color: #4988c4;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.step-link-more:hover {
  color: #1c4d8d;
}

.step-link-more::after {
  content: "→";
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.step-link-more:hover::after {
  margin-left: 12px;
}

@media (max-width: 968px) {
  .step-timeline-line {
    left: 20px;
  }

  .step-marker {
    left: 20px;
  }

  .step-row {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 70px;
  }

  .step-left-side,
  .step-right-side {
    width: 100%;
    padding: 0;
    text-align: left;
    margin: 0;
  }

  .step-image-card {
    margin-bottom: 20px;
  }

  .step-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .step-hero-title {
    font-size: 28px;
  }

  .step-text-block h2 {
    font-size: 22px;
  }
}
