.faq-wrap {
  background: var(--bg);
}

.faq {
  padding-top: 96px;
  padding-bottom: 96px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 24px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 34px 22px 0;
  font-weight: 700;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--red);
  font-size: 23px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  padding: 0 0 22px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand .brand-logo {
  width: 58px;
  height: 58px;
}

.contact-email {
  margin-top: 12px !important;
}

.contact-email a {
  color: #d5deea;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}
