.product-faq {
  color: #fff;
  padding: 6rem 0;
}

.product-faq h2 {
  font-size: 2.4rem;
  color: #fff;
}

.product-faq__inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
}

.product-faq__intro {
  max-width: 26rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 1.5rem;
  height: 100%;
}

.product-faq__intro p {
  color: #fff;
}

.product-faq__intro .btn-link {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: 100%;
  display: block;
  text-align: center;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
}

.product-faq__list {
  flex: 1;
  border-top: 1px solid #fff;
  margin-top: 5rem;
}

.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.faq-item__icon {
  font-size: 2rem;
  color: #befc83;
  transition: transform 0.3s ease;
  font-family: "Manrope";
  font-weight: 100;
  line-height: 1;
}

.faq-item__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding-right: 12rem;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-item__answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item__answer p {
  color: #fff;
}

@media (max-width: 965px) {
  .product-faq__inner {
    flex-direction: column;
    gap: 0;
  }
  .product-faq__intro {
    position: relative;
    top: 0;
  }

  .faq-item__answer {
    padding-right: 1rem;
  }
}
