.faq-page {
  background: #f8fafc;
  min-height: 100vh;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #0f172a;
}

.faq-breadcrumb {
  display: flex;
  gap: 8px;
  padding: 16px 32px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}

.faq-breadcrumb a {
  color: #475569;
  text-decoration: none;
}

.faq-breadcrumb a:hover {
  color: #2563eb;
}

.faq-hero {
  margin: 20px 0 20px;
  padding: 40px 32px;
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(248, 251, 255) 100%);
  box-shadow: rgba(15, 23, 42, 0.08) 0px 30px 80px;
}

.faq-hero-label,
.faq-hero-title,
.faq-hero-text {
  margin: 0;
}

.faq-hero-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #2563eb;
  margin-bottom: 12px;
}

.faq-hero-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
}

.faq-hero-text {
  max-width: 720px;
  color: #475569;
  line-height: 1.75;
}

.faq-body {
  padding: 0 32px 40px;
}

.faq-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
  overflow: hidden;
}

.faq-card-header {
  padding: 24px 28px 20px;
}

.faq-card-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.faq-card-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0 0 6px;
}

.faq-card-header h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.1;
}

.faq-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  padding: 0 28px 28px;
}

.faq-side-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-answer-panel {
  display: flex;
  align-items: stretch;
}

.faq-answer-card {
  width: 100%;
  background: #f8fbff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.faq-answer-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: #2563eb;
  margin: 0 0 10px;
}

.faq-answer-title {
  margin: 0 0 18px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #0f172a;
}

.faq-answer-body {
  color: #475569;
  line-height: 1.8;
}

.faq-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 28px 20px;
}

.faq-category {
  border: 1px solid transparent;
  background: #f1f5f9;
  color: #475569;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-category:hover,
.faq-category.active {
  background: #2563eb;
  color: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
}

.faq-list {
  display: grid;
  gap: 12px;
  padding: 0;
  background: transparent;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: #ffffff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-question:hover {
  background: #f8fafe;
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #64748b;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #2563eb;
}

.faq-answer {
  padding: 0 28px 24px;
  display: none;
  color: #475569;
  line-height: 1.75;
  border-top: 1px solid #e2e8f0;
  background: #f9fbff;
}

.faq-answer p {
  margin: 0;
  padding: 14px 0 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-cta-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 30px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.faq-cta-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #2563eb;
  margin: 0 0 10px;
}

.faq-cta-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #0f172a;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-1px);
}

.faq-cta-btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.faq-cta-btn-secondary {
  background: #f8fafc;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

@media (max-width: 960px) {
  .faq-card-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-search-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .faq-body,
  .faq-hero {
    padding: 24px 20px;
  }

  .faq-card-header {
    padding: 20px 20px 14px;
  }

  .faq-category-tabs {
    padding: 0 20px 16px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-cta-card {
    padding: 22px 20px;
  }
}
