.faq .page-header {
  background-image: url(../img/other/page-header-lg.webp);
}

.section.faq{
max-width: 920px;
  margin: 0 auto 4em;
}

.faq .item{
   margin-bottom: 1em;
  background: #edf4f9;
  border-radius: 8px;
  padding: 14px 24px 18px;
  border: 1px solid #d8e1e9;
  box-shadow: 0 2px 5px rgba(0,0,0,.02);
  }

.faq .question {
  position: relative;
  width: 100%;
  border: none;
  background: none;
  padding: 8px 40px 8px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  gap: 10px;
}

.faq .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--brand-gold, #BFA331);
}

.faq .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  pointer-events: none;
}

.faq .answer {
  display: flex;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq .label-a {
  flex-shrink: 0;
  margin-top: 8px;
}

.faq .label-q,
.faq .label-a{
  font-weight: 600;
  color: var(--color-gold);
}

.faq .answer-text {
  padding: 8px 0 4px 0;;
}

.faq .item.is-open{
  background: #e6f0f8;
}

.faq .item.is-open .icon{
  transform: translateY(-50%) rotate(45deg);
}
