.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

header {
  text-align: center;
  margin-bottom: 100px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #cbd5e1 20%, #cbd5e1 80%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-image {
  flex: 0 0 450px;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}
.step-image:hover {
  transform: translateY(-10px) scale(1.03);
}

.step-content {
  flex: 1;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.step-title {
  font-size: 2rem;
  color: #1e293b;
  margin: 0;
  font-weight: 600;
}

.step-desc {
  font-size: 1.18rem;
  color: #475569;
  margin: 0;
}

@media (max-width: 900px) {
  .steps::before {
    display: none;
  }
  .step {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }
  .step .step-header {
    justify-content: center;
  }
  .step .step-image {
    width: 100%;
    flex: none;
    height: 280px;
  }
}

/*# sourceMappingURL=CustomizedService.css.map */
