.service-faq {
  background: #f4f4f5;
  padding: 6rem 1.5rem;
}

.service-faq__inner {
  max-width: 48rem;
  margin: 0 auto;
}

.service-faq__heading {
  margin-bottom: 4rem;
  text-align: center;
}

.service-faq__heading h2 {
  margin: 0;
  color: #092842;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.service-faq__heading p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: #52525b;
  line-height: 1.6;
}

.service-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  color: #092842;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  list-style: none;
}

.service-faq__question::-webkit-details-marker {
  display: none;
}

.service-faq__question::after {
  content: "+";
  flex: 0 0 auto;
  color: #1599b7;
  font-family: sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 160ms ease;
}

.service-faq__item[open] .service-faq__question::after {
  content: "−";
}

.service-faq__answer {
  margin: 0;
  padding: 0 2.5rem 1.5rem 0;
  color: #52525b;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .service-faq {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .service-faq__heading {
    margin-bottom: 2.5rem;
  }
}
