/* FAQ accordion — canonical styles (matches index.html #faq) */

.faq-sec {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-title {
  background: #f3f4f6;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-sec > details {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s;
}

.faq-sec > details:last-child {
  border-bottom: none;
}

.faq-sec > details[open] {
  background: #fafafa;
}

.faq-sec > details > summary {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-sec > details > summary::-webkit-details-marker {
  display: none;
}

.faq-sec > details > summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: #9ca3af;
  transition: transform 0.2s;
}

.faq-sec > details[open] > summary::after {
  content: '-';
  transform: rotate(0deg);
  color: #0f766e;
}

.faq-ans {
  padding: 0 16px 16px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
  text-align: left;
}

.faq-ans p {
  margin: 0 0 8px 0;
}

.faq-ans ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}
