/* Shared FAQ accordion styling — loaded globally so the FAQ section looks
   consistent on both service.php pages (which also load layouts/service.css,
   where these same rules originally lived) and location/sublocation pages. */

.faq-section {
  padding: 60px 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-menu-bg, #012169);
  margin-bottom: 30px;
}

.faq-category {
  margin: 30px 0 15px;
  font-size: 1.1rem;
}

.faq-category:first-of-type {
  margin-top: 10px;
}

.faq-grid details {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-grid summary {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: #111;
}

.faq-grid details p {
  padding: 0 20px 20px;
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 28px;
  }
}
