.block-editor .faq-answer {
    display: block !important;
}

.wp-block-heading.has-h-2-font-size.faq-head {
  font-family: var(--wp--preset--font-family--inter, sans-serif);
  font-size: var(--wp--preset--font-size--h-2, 32px);
  font-weight: 600;
  color: var(--wp--preset--color--black, #000000);
  margin: 0 0 var(--wp--preset--spacing--sm, 8px) 0;
}

.wp-block-npm-faq.faq-section {
    max-width: 1190px;
    margin: 0 auto;
}

.faq-items .faq-item:last-child {
  margin-bottom: 0px;
}

.faq-item {
  border-radius: 8px;
  background-color: #F3F3F3;
  margin-bottom: 30px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 30px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question.active {
  background: var(--wp--preset--color--brand-orange, #4CA7D1);
  color: #fff;
}

.faq-question.active h3 {
  background: var(--wp--preset--color--brand-orange, #4CA7D1);
  color: #fff;
}

.faq-question.active button {
  color: #ffffff;
}

.faq-toggle {
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 11px 30px;
  background: #F3F3F3;
  color: #444;
  border-top: 1px solid #fff;
}

.faq-answer.show {
  display: block;
}

.faq-question h3 {
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 300;
}

.faq-answer p {
  font-size: 16px !important;
}
.faq-heading-section {
    display: none;
}

@media screen and (max-width: 768px) {
  .wp-block-npm-faq.faq-section {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .wp-block-npm-faq.faq-section {
    width: 100%;
  }
}