/* =====================
   How It Works Section
===================== */
#how-it-works {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Century Gothic', sans-serif;
  color: #333;
  background: linear-gradient(135deg, #f8f8f8 0%, #eaeaea 100%);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Headings */
#how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  color: #b2975a;
  margin-bottom: 2rem;
}

/* Steps Container */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

/* Each Step Box */
.step {
  flex: 1 1 30%;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.step.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Step Icon */
.step i {
  font-size: 2rem;
  color: #b2975a;
  margin-bottom: 0.5rem;
}

/* Step Text */
.step-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.step-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}

/* CTA Box */
.hiw-cta {
  text-align: center;
  margin-top: 2.5rem;
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-weight: bold;
}

.hiw-cta a {
  color: #b2975a;
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive for Tablets & Mobile */
@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    flex: 1 1 100%;
    max-width: 400px;
    padding: 1rem;
  }

  .step-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }

  .step-text p {
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0;
  }

  .step.fade-in {
    transform: translateY(10px);
  }
}





