/* === HOW IT WORKS PAGE STYLES === */

.howitworks-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.howitworks-hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}

.howitworks-hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.howitworks-steps {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step-icon {
  font-size: 2.2rem;
  background: #111;
  color: #fff;
  padding: 1rem;
  border-radius: 50%;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111;
}

.step-content p {
  color: #444;
  line-height: 1.6;
}

.section-divider {
  border-top: 1px solid #eee;
  margin: 0 auto;
  max-width: 1000px;
}

.howitworks-info {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.howitworks-info h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.howitworks-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon {
    margin-bottom: 1rem;
  }
}
