/* ===== FAQ ===== */
.faq-heading {
  font-size: 32px;
  font-weight: 600;
  color: #204867;
  line-height: 44px;
  margin-bottom: 54px;
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.faq-item {
  border-bottom: 1px solid #336b97cc;
}

.faq-item:first-child {
  border-top: 1px solid #336b97cc;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  font-family: inherit;
  line-height: 36px;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #eff8ff;
}

.faq-icon {
  font-size: 36px;
  font-weight: 500;
  color: #495057;
  flex-shrink: 0;
  margin-right: 24px;
  line-height: 36px;
}

.faq-answer {
  display: none;
  padding: 0 40px 36px;
}

.faq-answer-open {
  display: block;
}

.faq-item-open {
  background: #eff8ff;
}

.faq-answer p {
  font-size: 24px;
  font-weight: 400;
  color: #1a3a52;
  line-height: 36px;
  text-align: left;
}
