.faq-content-wrap {
  padding-top: 50px;
  padding-bottom: 70px;
}

.faq-intro {
  max-width: 820px;
}

.faq-filter-wrap {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-filter-label {
  font-weight: 700;
  color: #123731;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.faq-category-filter {
  border: 1px solid #c7d5d2;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: #123731;
  font-weight: 600;
}

.faq-category-block {
  margin-bottom: 28px;
}

.faq-category-title {
  display: block;
  border-left: 5px solid #2f7d6d;
  background: linear-gradient(90deg, #eef8f5 0%, #ffffff 100%);
  padding: 12px 16px;
  margin-bottom: 14px;
  color: #173f37;
  letter-spacing: 0.2px;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 800;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid #d9e3e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 700;
  color: #123731;
  position: relative;
  padding-right: 46px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #126b5f;
}

.faq-item[open] .faq-question:after {
  content: '-';
}

.faq-answer {
  border-top: 1px solid #ebf1f0;
  padding: 12px 18px 16px;
  color: #304845;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .faq-content-wrap {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .faq-question {
    padding: 12px 14px;
    padding-right: 40px;
  }

  .faq-answer {
    padding: 10px 14px 14px;
  }
}
