/* Pulls in shared tokens, header, footer, page-hero, and button styles
   from the homepage stylesheet so every page stays visually consistent. */
@import url('styles.css');

/* ============================
   FAQ categories
============================ */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 4vw 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-category h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.faq-item {
  background: #f7f7f7;
  border: 1px solid #ececea;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item:last-child { margin-bottom: 0; }

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.faq-item h4 {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0;
}

.faq-item a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
}

.faq-item a:hover { color: var(--navy); }

/* ============================
   Bottom CTA
============================ */
.faq-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 4vw;
  margin-top: 2rem;
}

.faq-cta h2 { color: var(--white); }

.faq-cta .hero-cta {
  margin-top: 1.75rem;
}

/* ============================
   Responsive
============================ */
@media (max-width: 600px) {
  .faq-item { padding: 1.25rem 1.25rem; }
}