.faqs-page .page-hero {
  padding: 92px 0 58px;
}
.faqs-page .faq-list {
  display: block;
  gap: 0;
}
.faqs-page .faq-item {
  border: 1px solid #DBDBDB;
  background: #FFF;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.faqs-page .faq-item + .faq-item {
  margin-top: 24px;
}
.faqs-page .faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
}
.faqs-page .faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 26px 32px;
  opacity: 1;
}
.faqs-page .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px;
  border: none;
  background: transparent;
  color: #10151A;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}
.faqs-page .faq-arrow {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  transition: transform 0.2s ease;
}
.faqs-page .faq-answer {
  max-height: 0;
  padding: 0 26px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
.faqs-page .faq-answer p {
  margin: 0;
  color: #464646;
  font-size: 20px;
  line-height: 1.7;
}
.faqs-page .faq-answer p + p {
  margin-top: 8px;
}
.faqs-page .faq-answer a {
  color: #E70216;
}
.faqs-section {
  padding: 0 0 100px;
}
.faqs-layout {
  max-width: 920px;
  margin: 0 auto;
}
.faqs-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 270px;
  width: max-content;
  margin: 40px auto 0;
  padding: 20px 28px;
  border: 1px solid #FA2A42;
  border-radius: 999px;
  background: #FFF;
  color: #FA2A42;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s ease;
}
.faqs-more:hover {
  background: rgba(250, 42, 66, 0.05);
}
.faqs-more:hover .faqs-more-arrow {
  transform: translateX(4px);
}
.faqs-more-arrow {
  width: 15px;
  height: auto;
  transition: transform 0.2s ease;
}
@media (max-width: 996px) {
  .faqs-page .faq-question {
    font-size: 18px;
  }
  .faqs-page .faq-answer p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .faqs-page .page-hero {
    padding: 72px 0 48px;
  }
  .faqs-page .faq-item + .faq-item {
    margin-top: 16px;
  }
  .faqs-page .faq-item.is-open .faq-answer {
    padding: 0 18px 24px;
  }
  .faqs-page .faq-question {
    padding: 18px;
    font-size: 16px;
    gap: 12px;
  }
  .faqs-page .faq-arrow {
    width: 20px;
    height: 20px;
  }
  .faqs-page .faq-answer {
    padding: 0 18px;
  }
  .faqs-page .faq-answer p {
    font-size: 14px;
  }
  .faqs-section {
    padding-bottom: 64px;
  }
  .faqs-more {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding: 16px 24px;
  }
  .faqs-more-arrow {
    width: 12px;
  }
}
