<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.faq--accordion {
  margin: 20px 0;
  padding: 0.5rem;
  cursor: pointer;
  border-style: ridge;
  border-color: azure;
}
.faq--accordion .headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq--accordion .headline .text {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
}
.faq--accordion .content {
  display: none;
  margin-top: 20px;
}
.faq--accordion.active .headline .icon {
  transform: rotate(180deg);
}
.faq--accordion.active .content {
  display: block;
}</pre></body></html>