/* Bootstrap üzerinden sade, beyaz-mavi ağırlıklı bir arka plan ve site bütünlüğü sağlamak için buraya ekstra stil ekleyebilirsiniz. */
body { background: #f8f9fb; }

/* (Var olan kodlarınızın üzerine eklenir) */
.step-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 1rem;
  box-shadow: 0 2px 8px 0 #0001;
  padding: 1.5rem 1rem;
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.step-circle {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #2176ff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  background: #f9faff;
  color: #2176ff;
  margin-bottom: 8px;
}
.step-title {
  font-weight: 700;
  font-size: 1.06rem;
  color: #1d1d1d;
  margin-bottom: 6px;
}
.step-desc {
  font-size: .97rem;
  color: #555;
  min-height: 44px;
}
@media (max-width: 767px) {
  .step-card {margin-bottom:1rem; min-height:unset;}
  .step-desc {min-height: 0;}
}
