main .faq-section,
main .entry-content .faq-section {
  max-width: 940px !important;
  margin: 0 auto;
  padding:0 20px;
  text-align: center;
}

.faq-title {
  font-family: 'Monni', sans-serif;
  font-size: 2rem;
  color: #191998; /* Protexin Blue */
  font-weight: 700;
}

.faq-list {
  margin-top: 2rem;
  text-align: left;
}

.faq-item {
  border-bottom: 2px solid #191998;
  margin-bottom: 1rem;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0.5rem 0 1rem;
  color: #333;
}

.faq-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #191998;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2rem;
}

.faq-toggle-icon::before {
  content: '+';
  transition: transform 0.2s ease;
  font-size: 25px;
  font-weight: 400;
  line-height:10px;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon::before {
  content: '-';

}
