.faq-categories {
  font-family: sans-serif;
}

.faq-category {
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-category-title {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
}

.faq-arrow {
  position: absolute;
  right: 25px;
  width: 0.6em;
  height: 0.6em;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-left: 0.5rem;
}

.faq-category-title.open .faq-arrow,
.faq-question.open .faq-arrow {
  transform: rotate(225deg);
}

.faq-category-content {
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .faq-category-content {
    padding: 0.75rem 2rem;
  }
}

.faq-item {
  padding: 0.25rem 0;
}

.faq-question {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0.5rem 2rem 0.5rem 0;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  background: none;
  outline: none;
  position: relative;
}

.faq-question:hover {
  color: #0074d9;
}

.faq-question:focus {
  outline: none;
}

.faq-question.open {
  color: #005fa3;
}

.faq-answer {
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 0.8rem;
  color: #333;
  width: 100% !important;
}

.faq-answer p {
  font-size: 15px !important;
}
