.cs-faq .section-header {
  text-align: left;
}

.cs-faq .section-header p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.cs-faq__heading {
  margin: 0;
}

.cs-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

.cs-faq__trigger:hover,
.cs-faq__trigger:focus-visible {
  outline: none;
}

.cs-faq__question-text {
  flex: 1 1 auto;
}

.cs-faq__arrow {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .24s ease;
}

.cs-faq__item.open .cs-faq__arrow {
  transform: rotate(-135deg);
}

.cs-faq__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .3s ease, opacity .2s ease;
}

.cs-faq__answer {
  padding-top: 10px;
}

.cs-faq__answer > *:first-child {
  margin-top: 0;
}

.cs-faq__answer > *:last-child {
  margin-bottom: 0;
}
