/* Hero section */
.hero {
  background: linear-gradient(135deg, rgba(15,61,145,0.92), rgba(15,61,145,0.8)), url('/assets/banners/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-top: 12px;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* CTA section */
.cta-section {
  text-align: center;
  background: var(--light-gray);
  border-radius: 48px;
  padding: 48px !important;
}
.cta-section h2 {
  margin-bottom: 24px;
}

/* FAQ Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--light-gray);
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-gray);
}
.faq-question i {
  transition: transform 0.3s;
  color: var(--bright-orange);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
  border-top: 1px solid transparent;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
  border-top-color: #e0e0e0;
}
body.dark .faq-item.active .faq-answer {
  border-top-color: #333;
}

@media (max-width: 768px) {
  .hero { padding: 80px 0; }
  .hero-content h1 { font-size: 2rem; }
}