#faq {
  position: relative;
  background: #fff;
}

.faq-header {
  max-width: 820px;
  margin-bottom: 44px;
}

.faq-title {
  max-width: 780px;
  margin-bottom: 20px;
  text-wrap: balance;
}

.faq-lead {
  max-width: 680px;
  margin: 0;
  color: #475569;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

#faq .rdai-faq {
  max-width: 920px;
  border-top: 1px solid #cbd5e1;
}

#faq .rdai-faq details {
  border: 0;
  border-bottom: 1px solid #cbd5e1;
  border-radius: 0;
  background: transparent;
}

#faq .rdai-faq summary {
  position: relative;
  padding: 25px 54px 25px 0;
  color: #0f172a;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

#faq .rdai-faq summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: #2563eb;
  content: "+";
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}

#faq .rdai-faq details[open] summary {
  color: #1d4ed8;
}

#faq .rdai-faq details[open] summary::after {
  transform: rotate(45deg);
}

#faq .rdai-faq details p {
  max-width: 760px;
  margin: 0;
  padding: 0 54px 26px 0;
  color: #526072;
  font-size: 15px;
  line-height: 1.72;
}

#faq .rdai-faq summary:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 5px;
}

@media (max-width: 600px) {
  .faq-header {
    margin-bottom: 32px;
  }

  #faq .rdai-faq summary {
    padding: 21px 42px 21px 0;
    font-size: 16px;
  }

  #faq .rdai-faq summary::after {
    top: 20px;
    right: 2px;
  }

  #faq .rdai-faq details p {
    padding: 0 0 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #faq .rdai-faq summary::after {
    transition: none;
  }
}

