/* css/faq.css
   FAQ page–specific overrides
*/

/* Section title */
.faq h2 {
  font-size: 2rem;
  color: #003f63;
  margin-bottom: 1rem;
  text-align: center;
}

/* Each Q&A block */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

/* Question button */
.accordion-header {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #003f63;
  cursor: pointer;
  position: relative;
}
.accordion-header::after {
  content: "▶";
  position: absolute;
  right: 0;
  top: 1rem;
  transition: transform 0.2s ease;
}
.accordion-header.active::after {
  transform: rotate(90deg);
}

/* Answer panel */
.accordion-content {
  display: none;
  padding: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.accordion-content ul {
  margin: 0.75rem 0 1rem 2rem;
  padding-left: 0;
  list-style: disc outside;
}
.accordion-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.faq-section {
  margin-bottom: 2.5rem;
}
