/* faq.css */

/* Container */
.faq-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

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

/* Each Q+A block */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

/* Question button */
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1c4587;
  cursor: pointer;
  position: relative;
  outline: none;
}

/* Plus/minus toggle icon */
.faq-question::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]::after {
  content: '–';
}

/* Answer panel */
.faq-answer {
  background: #fff;
  padding: 0 1rem 1rem;
  color: #333;
  line-height: 1.6;
}

/* Hide by default */
.faq-answer[hidden] {
  display: none;
}

/* Show when expanded */
.faq-answer:not([hidden]) {
  display: block;
}
