.faq-section {
  direction: rtl;
  padding: 110px 20px;
  background:
    radial-gradient(circle at top right, rgba(245, 252, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);

      box-shadow:
    inset 0 0 120px rgba(249,61,129,0.1),
    inset 0 0 220px rgba(249,61,129,0.1);
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgb(1, 47, 58);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: #111827;
  margin-bottom: 14px;
  line-height: 1.15;
}

.faq-header p {
  max-width: 620px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgb(248, 253, 255);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-item:focus,
.faq-item:focus-visible,
.faq-item:active {
  outline: none;
}

.faq-item.active {
  /* border-color: rgba(249, 61, 129, 0.35); */
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: right;
  color: #111827;
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 800;
}

.faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(1, 47, 58);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #111827;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 28px 26px;
  color: #475569;
  line-height: 1.9;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 16px;
  }

  .faq-header {
    margin-bottom: 34px;
  }

  .faq-question {
    padding: 20px 18px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 18px 22px;
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
  }
}