.faq-editor {
  padding: 80px 20px 10px;
}
.faq-editor .accordion-button {
  background: #f8f9fa;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.faq-editor .accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.faq-editor .accordion-button:hover {
  background: rgba(var(--bs-primary-rgb), 0.35);
}
.faq-editor .accordion-body {
  background: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  border-left: 4px solid var(--bs-primary);
}
.faq-editor .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.faq-editor .faq-question:hover {
  color: var(--bs-primary);
}
.faq-editor .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #555555;
  line-height: 1.6;
}
.faq-editor .arrow {
  border: solid #666666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-editor .faq-toggle {
  display: none;
}
.faq-editor .faq-toggle:checked ~ .faq-answer {
  max-height: 999999999px;
  padding: 10px 10px 1px 30px;
  background: #ffffff;
}
.faq-editor .faq-toggle:checked + .faq-question .arrow {
  transform: rotate(-135deg);
}
.faq-editor .accordion-button:after {
  display: none;
}
