.faq-section {
  background: linear-gradient(180deg, #dfe1f3 0%, #d7d9f0 100%);
}

.faq-wrapper {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 20px 45px rgba(56, 65, 110, 0.10);
  backdrop-filter: blur(10px);
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #5a5ae6;
  font-size: 14px;
  font-weight: 700;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #1c2230;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #4f5a6d;
  max-width: 850px;
}

.faq-accordion {
  margin-top: 28px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(160, 168, 210, 0.35) !important;
  border-radius: 24px !important;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(61, 76, 125, 0.08);
  margin-bottom: 18px;
}

.faq-button {
  background: transparent !important;
  color: #1d2433 !important;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 24px 26px;
  box-shadow: none !important;
}

.faq-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #1d2433 !important;
}

.faq-button::after {
  filter: hue-rotate(210deg) saturate(2);
}

.faq-body {
  padding: 0 26px 24px 26px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #33405f;
  border-top: 1px solid rgba(160, 168, 210, 0.22);
}

@media (max-width: 767.98px) {
  .faq-wrapper {
    padding: 22px;
    border-radius: 24px;
  }

  .faq-button {
    font-size: 1rem;
    padding: 18px 18px;
  }

  .faq-body {
    padding: 0 18px 18px 18px;
    font-size: 0.98rem;
  }
}