/* faq section */
.faq-wrapper {
  background: #f5f2ff;
}

.faq-heading {
  text-align: center;
  margin: 0 auto 2.25rem;
  max-width: 840px;
}

.faq-title {
  font-weight: 700;
  font-size: 2.25rem;
  margin: 0.35rem 0 0.5rem;
  color: #111325;
}

.faq-copy {
  color: #3f4154;
  font-size: 1.02rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.faq-accordion {
  display: grid;
  gap: 0.35rem;
  position: relative;
  padding-left: 0;
}

.faq-item {
  background: transparent;
  border-radius: 0;
  padding: 0.75rem 0 0.4rem;
  transition: border-color 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(60, 44, 163, 0.28);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #111325;
  margin: 0;
  padding: 0.9rem 0.5rem 0.75rem 0;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(130, 89, 232, 0.4);
  outline-offset: 3px;
}

.faq-question-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.faq-bullet {
  position: relative;
  display: inline-flex;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #8259E8;
  background: transparent;
  box-shadow: 0 0 0 4px rgba(130, 89, 232, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-bullet::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #8259E8;
  opacity: 0;
  transform: scale(0.4);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-question-text {
  font-size: 1.06rem;
  line-height: 1.35;
  transition: color 0.18s ease;
}

.faq-item:hover .faq-bullet {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(130, 89, 232, 0.08);
  border-color: rgba(130, 89, 232, 0.85);
}

.faq-item.is-open .faq-bullet {
  transform: scale(1.08);
  box-shadow: 0 0 0 7px rgba(130, 89, 232, 0.1);
  border-color: #8259E8;
}

.faq-item.is-open .faq-bullet::after {
  opacity: 1;
  transform: scale(1);
}

.faq-toggle {
  position: relative;
  width: 14px;
  height: 14px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.faq-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #111325;
  border-bottom: 2px solid #111325;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-toggle::before {
  transform: rotate(-135deg);
}

.faq-item:hover .faq-toggle {
  transform: translateY(-1px);
}

.faq-item:hover .faq-question-text {
  color: #2a276b;
}

.faq-answer {
  color: #3f4154;
  display: block;
  max-height: 0;
  overflow: hidden;
  display: none;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  line-height: 1.6;
  font-size: 0.95rem;
  padding: 0 1.8rem 0 1.5rem;
}

.faq-answer.active {
  display: block;
  max-height: 900px;
}

.faq-answer ul {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .faq-wrapper {
    padding: 3.5rem 1rem 3rem;
  }
  .faq-title {
    font-size: 1.95rem;
  }
  .faq-question {
    padding: 1rem 1rem;
  }
  .faq-answer,
  .faq-answer.active {
    padding: 0 2.8rem 0 2.5rem;
  }
}
/* faq section */
.faq-section {
  padding: 60px 0;
}

.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 15px;
  max-width: 32rem;
}

.faq-intro {
  color: #6a737a;
  max-width: 500px;
}

.accordion-button {
  font-weight: 600;
  padding: 20px;
  background-color: white;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: #212529;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-item {
  margin-bottom: 15px;
  border: 2px solid #dee2e6;
}

.accordion-body {
  padding: 0 20px 20px 20px;
  color: #6a737a;
}

.accordion-button::after {
  background-image: none !important;
  content: "\f067" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  color: #212529;
  width: auto;
  height: auto;
  margin-right: 10px;
}

.accordion-button:not(.collapsed)::after {
  content: "\f068" !important;
  transform: rotate(0deg);
}

/*# sourceMappingURL=faq.css.map */
