/* How It Works Section */
.how-it-works .step-box {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: 0.3s;
  height: 100%;
}
.how-it-works .step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.how-it-works .step-number {
  width: 60px;
  height: 60px;
  background: #3b4ef8;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.how-it-works .step-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.how-it-works .step-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* FAQ Section */
.faq .faq-item {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.faq .faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}
.faq .faq-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #3b4ef8 0%, #2a3dd9 100%);
  padding: 60px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}
.cta-btn {
  background: #3b4ef8;
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
}
.cta-btn:hover {
  background: #2a3dd9;
  transform: scale(1.05);
}
.cta-btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section Utilities */
.section-white { background: #fff; padding: 60px 0; }
.section-grey { background: #f8f9fa; padding: 60px 0; }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.section-title p {
  font-size: 16px;
  color: #666;
}
