.bg-faq {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bg-faq-question {
  cursor: pointer;
  padding: 15px;
  background-color: #f7f7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
}

.bg-faq-question:hover {
  background-color: #e2e2e2;
}

.bg-faq-question:after {
  content: "+";
  font-size: 20px;
  line-height: 1;
  margin-left: 10px; /* Space between text and icon */
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.bg-faq-question.active:after {
  content: "-";
  transform: rotate(180deg);
}

.bg-faq-answer {
  display: none;
  padding: 15px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

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

.bg-faqs-accordion {
  margin-bottom: 50px;
}

.hide_faq_element {
  display: none !important;
}

@media screen and (min-width: 767px) {
  #post-108
    .wp-block-column.is-layout-flow.wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    display: flex;
    justify-content: space-between;
    padding-left: 20%;
    padding-right: 20%;
  }

  #post-108 .col-full .entry-content {
    max-width: 100%;
  }
}
