.service-faq-2 {
  padding: 0 20px 90px;
  background: #ffffff;
}

.service-faq-2__container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-faq-2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-faq-2__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-faq-2__eyebrow {
  margin: 0;
  font-size: var(--section-eyebrow-size);
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.service-faq-2__heading {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: #17181d;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.service-faq-2__description {
  margin: 0;
  font-size: 17px;
  color: rgba(35, 35, 37, 0.82);
  line-height: 1.55;
}

.service-faq-2__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 208px;
  min-height: 78px;
  padding: 18px 30px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 12px 24px rgba(120, 104, 230, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-faq-2__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(120, 104, 230, 0.32);
}

.service-faq-2__accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-faq-2__item {
  border: 0.8px solid rgba(184, 181, 255, 0.15);
  border-radius: 15px;
  overflow: hidden;
}

.service-faq-2__item + .service-faq-2__item {
  margin-top: -0.8px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.service-faq-2__item:first-child {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.service-faq-2__item:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.service-faq-2__question-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 24px 25px 26px;
  background-color: rgba(237, 238, 247, 0.25);
  border: 0;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.service-faq-2__question {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.28;
  flex: 1;
}

.service-faq-2__toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 181, 255, 1);
}

.service-faq-2__toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.service-faq-2__toggle-line--horizontal {
  width: 16px;
  height: 2px;
}

.service-faq-2__toggle-line--vertical {
  width: 2px;
  height: 16px;
}

.service-faq-2__item.is-active .service-faq-2__toggle {
  background: var(--color-primary);
}

.service-faq-2__item.is-active .service-faq-2__toggle-line--vertical {
  opacity: 0;
}

.service-faq-2__answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.service-faq-2__item.is-active .service-faq-2__answer-wrap {
  max-height: 500px;
}

.service-faq-2__answer {
  padding: 24px 24px 28px;
}

.service-faq-2__answer p {
  margin: 0;
  color: rgb(112, 112, 114);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1023px) {
  .service-faq-2 {
    padding: 0 20px 60px;
  }

  .service-faq-2__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-faq-2__content {
    align-items: center;
    text-align: center;
  }

  .service-faq-2__heading {
    font-size: var(--section-heading-size-tablet);
  }

  .service-faq-2__description {
    font-size: 16px;
  }

  .service-faq-2__cta {
    align-self: center;
  }

  .service-faq-2__question {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .service-faq-2 {
    padding: 0 20px 48px;
  }

  .service-faq-2__heading {
    font-size: var(--section-heading-size-mobile);
  }

  .service-faq-2__description {
    line-height: var(--section-body-line-height);
  }

  .service-faq-2__cta {
    min-width: 0;
    width: 100%;
    min-height: 60px;
    padding: 16px 24px;
  }

  .service-faq-2__question-wrap {
    padding: 20px 18px;
    gap: 14px;
  }

  .service-faq-2__question {
    font-size: 18px;
  }

  .service-faq-2__toggle {
    width: 40px;
    height: 40px;
  }

  .service-faq-2__answer {
    padding: 18px 18px 22px;
  }

  .service-faq-2__answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}
