/* Shared FAQ component. Native disclosure controls need no JavaScript. */
.ws-faq.ws-faq {
  box-sizing: border-box;
  width: calc(100% - 32px);
  max-width: 960px;
  margin: clamp(32px, 5vw, 64px) auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: 24px;
}
.ws-faq.ws-faq > h2 {
  max-width: 760px;
  margin: 0 0 24px;
  padding: 0;
  color: #123d35;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
  text-align: left;
  text-transform: none;
  text-shadow: none;
}
.ws-faq__list { display: grid; gap: 12px; }
.ws-faq .ws-faq__item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d7e3df;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 5px rgb(18 61 53 / 3%);
}
.ws-faq .ws-faq__item[open] {
  border-color: #70a998;
  background: #f5fbf8;
}
.ws-faq .ws-faq__item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  box-sizing: border-box;
  padding: 18px 24px;
  color: #123d35;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  list-style: none;
}
.ws-faq summary::-webkit-details-marker { display: none; }
.ws-faq summary::marker { content: ''; }
.ws-faq summary::after {
  content: '+';
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf3ef;
  color: #14664f;
  font: 24px/1 Arial, sans-serif;
}
.ws-faq details[open] > summary::after { content: '−'; background: #14664f; color: white; }
.ws-faq summary:hover { background: #edf6f1; }
.ws-faq summary:focus-visible { outline: 3px solid #14664f; outline-offset: -4px; border-radius: 12px; }
.ws-faq .ws-faq__answer {
  padding: 0 74px 22px 24px;
  color: #354c46;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  overflow-wrap: anywhere;
}
.ws-faq .ws-faq__answer p { margin: 0 0 12px; padding: 0; font-size: inherit; line-height: inherit; color: inherit; text-align: left; }
.ws-faq .ws-faq__answer > :last-child { margin-bottom: 0; }
.ws-faq .ws-faq__answer a { color: #12634f; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) {
  .ws-faq.ws-faq { width: calc(100% - 24px); }
  .ws-faq .ws-faq__item > summary { padding: 16px; gap: 12px; font-size: 16px; }
  .ws-faq .ws-faq__answer { padding: 0 16px 20px; }
}
@media print {
  .ws-faq details::details-content { content-visibility: visible; }
  .ws-faq .ws-faq__item { break-inside: avoid; box-shadow: none; }
  .ws-faq summary::after { display: none; }
}
