.cm-faq {
  margin-top: 48px;
}

.cm-faq__title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.cm-faq__raw {
  display: none;
}

.cm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cm-faq__item {
  border: 1px solid #e8ecee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease;
}

.cm-faq__item[open] {
  border-color: #2e7d32;
}

.cm-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  transition: background .15s ease, color .15s ease;
  user-select: none;
}

.cm-faq__question::-webkit-details-marker {
  display: none;
}

.cm-faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: #2e7d32;
  flex-shrink: 0;
  line-height: 1;
}

.cm-faq__item[open] > .cm-faq__question {
  color: #2e7d32;
}

.cm-faq__item[open] > .cm-faq__question::after {
  content: '−';
}

@media (hover: hover) and (pointer: fine) {
  .cm-faq__question:hover {
    background: #f8faf8;
  }
}

.cm-faq__answer {
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.cm-faq__answer p {
  margin: 0 0 8px;
}

.cm-faq__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .cm-faq__title {
    font-size: 20px;
  }

  .cm-faq__question {
    padding: 13px 16px;
    font-size: 14px;
  }

  .cm-faq__answer {
    padding: 0 16px 14px;
  }
}
