/* FAQ section – matches site green theme (#01824a) */

.s_faq {
  background: linear-gradient(180deg, #f5f8f6 0%, #ffffff 100%);
  position: relative;
}

.s_faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01824a 0%, #1454BD 100%);
}

.s_faq .faq_hd {
  text-align: center;
  margin-bottom: 3rem;
}

.s_faq .faq_hd h2 {
  font-size: 2.875rem;
  color: #212121;
  font-weight: bold;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.s_faq .faq_hd p {
  font-size: 1.125rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.s_faq .faq_accordion {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.s_faq .faq_item {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 2px 12px rgba(1, 130, 74, 0.08);
  border: 1px solid #e8eee9;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.s_faq .faq_item:hover {
  box-shadow: 0 4px 20px rgba(1, 130, 74, 0.12);
  border-color: rgba(1, 130, 74, 0.25);
}

.s_faq .faq_item[open] {
  border-color: #01824a;
  box-shadow: 0 4px 24px rgba(1, 130, 74, 0.15);
}

.s_faq .faq_q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #212121;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.s_faq .faq_q::-webkit-details-marker {
  display: none;
}

.s_faq .faq_q::after {
  content: "+";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: normal;
  color: #01824a;
  background: rgba(1, 130, 74, 0.08);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.s_faq .faq_item[open] .faq_q {
  color: #01824a;
  background: rgba(1, 130, 74, 0.04);
}

.s_faq .faq_item[open] .faq_q::after {
  content: "−";
  background: #01824a;
  color: #fff;
  transform: rotate(180deg);
}

.s_faq .faq_a {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid #eef2ef;
  margin: 0 1rem;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.s_faq .faq_a a {
  color: #01824a;
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 130, 74, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.s_faq .faq_a a:hover {
  color: #1454BD;
  border-bottom-color: #1454BD;
}

@media (max-width: 768px) {
  .s_faq .faq_hd h2 {
    font-size: 1.75rem;
  }

  .s_faq .faq_hd p {
    font-size: 1rem;
  }

  .s_faq .faq_q {
    font-size: 1rem;
    padding: 1rem 1.125rem;
  }

  .s_faq .faq_a {
    font-size: 0.9375rem;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    margin: 0 0.5rem;
  }
}
