  .faq_item {
    padding: 31px 35px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
    margin-bottom: 16px;
  }

  .faq_item .faq_head {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .faq_head .plus_icon {
    display: block;
  }

  .faq_head .minus_icon {
    display: none;
  }

  .faq_head.collapse_selected .plus_icon {
    display: none;
  }

  .faq_head.collapse_selected .minus_icon {
    display: block;
  }

  .faq_content {
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease;
  }

  .faq_selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    margin-top: 60px;
  }
  @media (max-width: 1080px) {
    .faq_selector {
      display: block;
    }
    .faq_search{
      margin-top:16px;
    }
  }

.faq_content_inner {
  padding: 16px 0;
  line-height: 28px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.faq_content_inner pre {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #F7F7FF;
  border: 1px solid rgba(14, 89, 242, 0.12);
  overflow-x: auto;
  white-space: pre;
  line-height: 1.35;

  /* critical override */
  word-break: normal;
  overflow-wrap: normal;
}

.faq_content_inner code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
               "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;

  /* same override for inline code if needed */
  word-break: normal;
  overflow-wrap: normal;
}
.faq_item.is_hidden { 
    display: none !important;
}

.order_hide {
display: none;
}

.search_hide {
display: none;
}

/* Optional topic badge shown above each FAQ question */
.faq_topic {
  display: inline-block;
  margin: 0 0 12px 0;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: lowercase; /* optional */
  background: #0E59F2;
  color: #fff;
}