.cs-faq {
  margin-top: 2rem;
}

.cs-faq__title {
  margin-bottom: 1rem;
}

.cs-faq__item {
  border-bottom: 1px solid #e0e0e0;
}

.cs-faq__question {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2rem 1rem 0;
  position: relative;
  font-weight: 600;
}

.cs-faq__question::-webkit-details-marker {
  display: none;
}

.cs-faq__question::after {
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.cs-faq__item[open] .cs-faq__question::after {
  transform: translateY(-30%) rotate(-135deg);
}

.cs-faq__answer {
  padding-bottom: 1rem;
}