/* Shared service-style FAQ accordion — chunk $faq / .section_faq */
.section_faq {
  --sc-faq-primary: #20A063;
  --sc-faq-deep: #15803D;
  --sc-faq-bg: #F8FAFC;
  --sc-faq-mint: #F0F9F5;
  --sc-faq-title: #0F172A;
  --sc-faq-body: #334155;
  --sc-faq-muted: #64748B;
  --sc-faq-border: #E2E8F0;
}

.section_faq .ot_zag {
  display: block;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
  font-family: "Exo 2", "Manrope", system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  color: var(--sc-faq-title);
}

.section_faq .ot_zag::after {
  display: none;
  content: none;
}

.section_faq .block.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section_faq .block details {
  display: block;
  background: var(--sc-faq-bg);
  border: 1px solid transparent;
  border-radius: 12px;
  margin: 0 0 12px;
  overflow: hidden;
  box-shadow: none;
}

.section_faq .block details[open] {
  background: var(--sc-faq-mint);
  border-left: 4px solid var(--sc-faq-primary);
}

.section_faq .block summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--sc-faq-title);
}

.section_faq .block summary::-webkit-details-marker,
.section_faq .block summary::marker {
  display: none;
  content: none;
}

.section_faq .block summary::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  background: none !important;
}

.section_faq .block summary::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid #9CA3AF;
  border-bottom: 2px solid #9CA3AF;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.section_faq .block details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 6px;
  border-color: var(--sc-faq-primary);
}

.section_faq .block summary:focus-visible {
  outline: 2px solid var(--sc-faq-deep);
  outline-offset: 2px;
}

.section_faq .faq_num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sc-faq-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.section_faq .block details > div {
  padding: 0 24px 18px 62px;
  color: var(--sc-faq-body);
  font-size: 15px;
  line-height: 1.6;
}

.section_faq .block details > div p {
  margin: 0 0 10px;
}

.section_faq .block details > div p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section_faq .ot_zag {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .section_faq .block summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  .section_faq .block details > div {
    padding: 0 18px 16px 18px;
  }
}
