<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 7em;
  margin-bottom: 3em;
}

details {
  font-size: 1rem;
  margin: 0 auto;
  width: 100%;
  background: #f6faff;
  border-radius: 0.5rem;
  position: relative;
  max-width: 900px;
  border: 1px solid #c3deff;
  transition: all 0.3s ease-in-out;
}

details:hover {
  border: 1px solid #a4a1ff;
}

summary {
  user-select: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  list-style: none;
  padding: 1rem;
  align-items: center;
}

summary:hover .faq-title {
  opacity: 1;
}

summary::-webkit-details-marker {
  display: none;
}

summary:focus {
  outline: none;
}

summary:hover .expand-icon {
  opacity: 1;
}

.faq-title {
  color: #1c2035;
  width: 90%;
  opacity: 0.65;
  transition: all 250ms ease-in-out;
}

.faq-content {
  color: #303651;
  padding: 0.2rem 1rem 1rem 1rem;
  font-weight: 300;
  line-height: 1.5;
}

.faq-content img {
  width: 100%;
}
.expand-icon {
  opacity: 0.65;
}

.expand-icon {
  pointer-events: none;
  position: absolute;
  right: 1rem;
  transition: all 150ms ease-out;
}
</pre></body></html>