.how-it-works-hero {
  text-align: center;
  padding: 100px 20px;
  background: var(--Hspan);
  color: #fff;
}

.how-it-works-hero h1 {
  font-family: var(--montserrat);
  font-size: 3rem;
  margin-bottom: 10px;
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  background: var(--header-cl);
  color: var(--text-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  background: var(--Hspan);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  margin-top: 0;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.how-cta {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-color);
}

.cta-primary {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--Hspan);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--text-color);
}

.section-divider {
  border: 0;
  height: 1px;
  background: var(--text-muted);
  margin: 40px auto;
  max-width: 80%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 83%;
  margin: 0 auto 60px;
  padding: 0 16px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--muted-text);
  color: var(--text-color);
  border-radius: 15px;
  transition: 0.3s;
  display: grid;
  grid-template-rows: 80px 65px;
  place-content: center;
}

.feature-item:hover {
  background: var(--header-cl);
  border-color: var(--Hspan);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-icon i {
  color: var(--Hspan);
}

.feature-item:nth-child(1) .feature-icon i {
  color: var(--Hspan);
}

.feature-item:nth-child(2) .feature-icon i {
  color: #177de4;
}

.feature-item:nth-child(3) .feature-icon i {
  color: #40e0d0;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--muted-text);
  padding-bottom: 15px;
  color: var(--text-color);
}

.faq-item h4 {
  color: var(--Hspan);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
    text-align: center;
  }
  .step-number {
    margin: 0 auto 15px;
  }
}
