/* FAQ Hero */
.about-hero {
  background: linear-gradient(to bottom, #111, #0a0a0a);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  margin-top: 100px;
}

.hero-sub {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto 0;
}

/* FAQ Section */
.faq-section {
  background: #111;
  padding: 5rem 1.5rem;
}

.faq-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #161616;
  border-radius: 12px;
  padding: 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.05);
  border: 1px solid #222;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

.faq-item p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* CTA Banner (shared) */
.cta-banner {
  background: linear-gradient(145deg, #1b1b1b, #0a0a0a);
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-sub {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.cta-banner .btn {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-banner .btn:hover {
  background: #e6c200;
}
