.frequently-asked-questions {
  background: rgb(17, 17, 17);
  padding: 100px 0 120px;
}
@media (max-width: 768px) {
  .frequently-asked-questions {
    padding: 68px 0;
  }
}

.faq__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .faq__container {
    padding: 0 20px;
  }
}
.faq__title {
  color: #EEE;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 63.84px;
  letter-spacing: -1.12px;
  margin: 0 0 62px;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 32px;
  }
}
.faq__accordion {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.faq__item {
  border-radius: 10px;
  background: #181818;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.faq__item[data-faq-open=true] {
  background: #1a1a1a;
}
.faq__question {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 65px;
  padding: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.faq__question:hover {
  opacity: 0.9;
}
.faq__question:focus {
  outline: none;
  outline-offset: 0;
}
.faq__question-text {
  color: #EEE;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.4px;
  padding-right: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__icon-plus, .faq__icon-minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__icon-plus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq__icon-minus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item[data-faq-open=true] .faq__icon-plus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item[data-faq-open=true] .faq__icon-minus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer-inner {
  padding: 0 20px 32px;
  max-width: 466px;
}
@media (max-width: 768px) {
  .faq__answer-inner {
    max-width: 267px;
  }
}
.faq__answer-inner p {
  color: rgba(238, 238, 238, 0.7);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.32px;
  margin: 0 0 16px;
}
.faq__answer-inner p:last-child {
  margin-bottom: 0;
}
.faq__answer-inner a {
  color: #DB9A0B;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.32px;
  opacity: 0.7;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.faq__answer-inner a:hover {
  opacity: 1;
  text-decoration: underline;
}
.faq__answer-inner strong,
.faq__answer-inner b {
  font-weight: 600;
  opacity: 0.85;
}
.faq__answer-inner em,
.faq__answer-inner i {
  font-style: italic;
}
.faq__answer-inner ul,
.faq__answer-inner ol {
  color: #EEE;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.32px;
  opacity: 0.7;
  margin: 0 0 16px;
  padding-left: 20px;
}
.faq__answer-inner ul:last-child,
.faq__answer-inner ol:last-child {
  margin-bottom: 0;
}
.faq__answer-inner ul li,
.faq__answer-inner ol li {
  margin-bottom: 8px;
}
.faq__answer-inner ul li:last-child,
.faq__answer-inner ol li:last-child {
  margin-bottom: 0;
}
.faq__answer-inner ul {
  list-style-type: disc;
}
.faq__answer-inner ol {
  list-style-type: decimal;
}
.faq__answer-inner h1, .faq__answer-inner h2, .faq__answer-inner h3, .faq__answer-inner h4, .faq__answer-inner h5, .faq__answer-inner h6 {
  color: #EEE;
  font-family: Inter, sans-serif;
  font-weight: 600;
  margin: 0 0 16px;
  opacity: 0.9;
}
.faq__answer-inner h3 {
  font-size: 18px;
  line-height: 24px;
}
.faq__answer-inner h4 {
  font-size: 16px;
  line-height: 22px;
}
.faq__answer-inner blockquote {
  border-left: 3px solid #DB9A0B;
  padding-left: 16px;
  margin: 0 0 16px;
  opacity: 0.8;
}
.faq__answer-inner blockquote p {
  margin-bottom: 0;
}
.faq__answer-inner code {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
}
.faq__answer-inner pre {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 0 0 16px;
}
.faq__answer-inner pre code {
  background: none;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq__answer {
    -webkit-transition: none;
    transition: none;
  }
  .faq__icon-plus,
  .faq__icon-minus {
    -webkit-transition: none;
    transition: none;
  }
}