.gs-faq {
  margin: 1em 0;
}

.gs-faq-item {
  border: 1px solid #333;
  border-radius: 4px;
  margin-bottom: 0.5em;
  background: #1a1a1a;
  overflow: hidden;
}

.gs-faq-question {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0.75em 1em;
  text-align: left;
  font-weight: bold;
  font-size: 1em;
  color: inherit;
  cursor: pointer;
  user-select: none;
}

.gs-faq-question::before {
  content: "\25BA\00A0";
  font-size: 0.8em;
}

.gs-faq-item.open .gs-faq-question {
  color: #E00022;
  border-bottom: 1px solid #333;
}

.gs-faq-item.open .gs-faq-question::before {
  content: "\25BC\00A0";
}

.gs-faq-answer {
  display: none;
  padding: 0.75em 1em;
  line-height: 1.6;
}

.gs-faq-item.open .gs-faq-answer {
  display: block;
}

.gs-faq-answer p {
  margin: 0;
}
