.is-editor.no__faq {
  background-color: gray;
  text-align: center;
  padding: 40px;
}

/* FAQ Section Styles */
.faq-section {
  margin: 2rem 0;
}
.faq-items {
  display: flex;
  flex-direction: column;
}
.faq-item {
  margin-bottom: 25px;
  border-bottom: 2px solid var(--contrast);
  padding: 0px 0px 30px 0px;
  background: #fff;
}
.faq-item-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  background: #fff;
}
.faq-item-question h4 {
  margin: 0;
  flex: 1;
}
.faq-item__toggle-icon {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-item__toggle-icon {
  transform: rotate(180deg);
}
.faq-item__toggle-icon-open,
.faq-item.active .faq-item__toggle-icon-close {
  display: inline;
  transition: opacity 0.3s;
  opacity: 1;
}
.faq-item__toggle-icon-close,
.faq-item.active .faq-item__toggle-icon-open {
  display: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.faq-item.active .faq-item__toggle-icon-open {
  display: none;
  opacity: 0;
}
.faq-item.active .faq-item__toggle-icon-close {
  display: inline;
  opacity: 1;
  position: relative;
}
.faq-item.active .faq-item__toggle-icon-close svg {
    position: relative;
    top: -5px;
}
.faq-item-answer {
  display: none;
  padding: 25px 0 0 0;
  background: #fff;
  border-top: 0;
}
.faq-item-answer p:last-child {
  margin-bottom: 0;
}
.faq-item-answer a {
  color: var(--contrast);
}
.faq-category-group {
  margin-bottom: 4rem;
}
.faq-category-group:last-child,
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-category-title{
  color: #595b60;;
}

.faq-category-title{ 
  font-weight: 400;
  text-transform: uppercase;
}

.faq-item-question{
  padding: 20px;
  background-color: #004f9f;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

.faq-item{ 
  border-color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq-item-answer{
  background-color: #f7f7f7;
  padding: 20px;
}

.faq-item__toggle-icon span svg path{
  fill: #ffcd1c !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-category-group {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .faq-item {
    margin-bottom: 15px;
    padding: 0px 0px 20px 0px;
  }
  .faq-item-answer {
    padding: 15px 0 0 0;
  }
}