/* ===== FAQ Section Styling ===== */
/* Matches styling of other types of elements */

.faq-section {
  width: 100%;
  margin: 24px auto;
  padding: 12px;
  box-sizing: border-box;
}

.faq-item {
  margin-bottom: 16px;
  padding: 12px;
  border-left: 4px solid #e6f2ff; /* matching styling */
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #e6f2ff; /* light blue hover */
}

.faq-question {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: bold;
}

.faq-answer {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* Emphasis for units inside answers (optional) */
.faq-answer em {
  font-style: italic;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .faq-section {
    padding: 8px;
  }
  .faq-item {
    padding: 8px;
  }
  .faq-question {
    font-size: 13px;
  }
  .faq-answer {
    font-size: 12px;
  }
}