.qp-faq-sc{
  padding: 80px 0;
  background: #0f1420;
  color: #fff;
}

.qp-faq-sc__title{
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f3f3;
  margin-bottom: 20px;
}

.qp-faq-sc__title::after{
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  background: rgb(57 186 201);
  margin: 18px auto 0;
}

.qp-faq-sc__title::before {
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  background: rgb(57 186 201);
  margin: 0 auto 18px;
}

.qp-faq-sc__description{
  line-height: 1.6;
  margin: 0 auto 50px;
  text-align: center;
  max-width: 82ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.qp-faq-sc__cols{
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.qp-faq-sc__col{
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 767px){
  .qp-faq-sc__cols{
    flex-direction: column;
  }
}

.qp-faq-sc__item{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgb(114 223 255 / 24%);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.qp-faq-sc__question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: transparent;
  background-color: transparent;
  color: #fff;
  border: 0;
  border-color: transparent;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.qp-faq-sc__question:focus,
.qp-faq-sc__question:focus-visible{
  outline: none;
  background-color: transparent !important;
  border-color: transparent !important;
}

.qp-faq-sc__question[aria-expanded="false"]:hover{
  background: rgba(255, 255, 255, 0.06);
  background-color: rgba(255, 255, 255, 0.06);
}

.qp-faq-sc__qtext{
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
}

.qp-faq-sc__icon{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / 77%);
  color: #111;
  position: relative;
}

.qp-faq-sc__icon::before,
.qp-faq-sc__icon::after{
  content: "";
  position: absolute;
  background: #111;
  border-radius: 2px;
}

.qp-faq-sc__icon::before{
  width: 12px;
  height: 2px;
}

.qp-faq-sc__icon::after{
  width: 2px;
  height: 12px;
  transition: opacity 180ms ease;
}

.qp-faq-sc__question[aria-expanded="true"],
.qp-faq-sc__question[aria-expanded="true"]:hover,
.qp-faq-sc__question[aria-expanded="true"]:focus,
.qp-faq-sc__question[aria-expanded="true"]:focus-visible{
  background: rgb(58 118 174);
  background-color: rgb(58 118 174) !important;
  border-color: transparent !important;
}

.qp-faq-sc__question[aria-expanded="true"] .qp-faq-sc__icon::after{
  opacity: 0;
}

.qp-faq-sc__answer{
  padding: 0 18px 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  font-size: 14px;
}

.qp-faq-sc__answer p{
  margin: 0.6em 0 0;
}

