.how-it-works {
  padding: 4rem 1rem;
  text-align: center;
  background: #f8f8fa;
}
.how-it-works h2 {
  font-size: 2.2rem;
  color: #800080;
  margin-bottom: 2rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}
.step-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(128,0,128,0.15);
}
.step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.step-icon img {
  width: 100%;
  height: auto;
}
.step-card h4 {
  color: #800080;
  margin-bottom: 0.6rem;
}
.step-card p {
  font-size: 1rem;
}
