.page-header {
  background: linear-gradient(rgba(24,29,56,0.7), rgba(24,29,56,0.7)), url('../img/faqs.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  position: relative;
  overflow: hidden;
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,12,32,0.12) 0%, rgba(6,12,32,0.18) 100%);
  pointer-events: none;
}

.page-title {
  position: relative;
  z-index: 2;
  font-family: 'Heebo', 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 10px 30px rgba(6,12,32,0.45);
  font-size: clamp(1.8rem, 2.4rem + 1.6vw, 3.6rem);
  margin-bottom: .5rem;
}

.page-title .text-accent {
  display: inline-block;
  padding: 0 .14rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.page-subtitle {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto 1rem;
  color: rgba(255,255,255,0.92);
  font-size: clamp(.98rem, .95rem + .6vw, 1.05rem);
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 6px 18px rgba(6,12,32,0.28);
}

.page-header .btn-lg {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  padding: .65rem 1.15rem;
  box-shadow: 0 8px 24px rgba(11,42,102,0.12);
  font-weight: 700;
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.06);
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.breadcrumb a { color: rgba(255,255,255,0.72); }
.breadcrumb .active { color: #fff; }

@media (max-width: 576px) {
  .page-header { padding-top: 2.25rem; padding-bottom: 2.25rem; }
  .page-subtitle { padding: 0 1rem; font-size: .95rem; }
  .page-title { font-size: 1.5rem; }
  .btn-lg { padding: .5rem .9rem; font-size: .95rem; }
}

/*---------------------------------------------------------------------------------------------------*/

:root{
  --purple-1: #06BBCC;
  --purple-2: #06BBCC;
  --muted: #6c757d;
  --bg: #fff;
  --card: #fff;
  --radius: 12px;
  --shadow: 0 14px 40px rgba(16,24,40,0.06);
}

body { background: var(--bg); color: #111; font-family: 'Inter', 'Heebo', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }

.faqs-hero { background: linear-gradient(180deg, rgba(102,42,153,0.96), rgba(75,47,166,0.92)); color: #fff; padding: 48px 0 36px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; margin-bottom: 28px; }
.hero-wrap { display:flex; align-items:center; gap:20px; justify-content:space-between; max-width:1150px; }
.hero-title { font-size: clamp(1.4rem, 1.9rem + 1vw, 2.6rem); margin:0 0 6px; font-weight:800; }
.hero-sub { margin:0 0 14px; color: rgba(255,255,255,0.92); max-width:600px; }
.hero-actions .btn { margin-right:8px; }
.btn { display:inline-flex; align-items:center; gap:.5rem; padding:.55rem .85rem; border-radius:10px; font-weight:700; text-decoration:none; border:0; cursor:pointer; }
.btn-primary { background: linear-gradient(90deg,var(--purple-2),var(--purple-1)); color:#fff; box-shadow: var(--shadow); }
.btn-outline { background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.12); }

.search-row { display:flex; flex-direction:column; gap:10px; margin-bottom:18px; }
#faqSearch {
  width:100%;
  padding:12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16,24,40,0.06);
  box-shadow: 0 6px 18px rgba(16,24,40,0.03);
  font-size: 0.98rem;
}
.chips { display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.chip { background:#f5f6fb; border:0; padding:8px 10px; border-radius:999px; cursor:pointer; font-weight:700; color:var(--muted); box-shadow: 0 6px 16px rgba(16,24,40,0.03); }
.chip.active { background: linear-gradient(90deg,var(--purple-2),var(--purple-1)); color:#fff; transform: translateY(-2px); }

.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(16,24,40,0.04); transition: transform .12s ease; }
.faq-item:hover { transform: translateY(-4px); }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px 16px; cursor:pointer; }
.q-left { display:flex; gap:12px; align-items:center; min-width:0; }
.q-badge { width:36px; height:36px; border-radius:8px; background: linear-gradient(180deg, rgba(102,42,153,0.12), rgba(75,47,166,0.06)); display:flex; align-items:center; justify-content:center; color:var(--purple-1); font-weight:800; }
.faq-q h3 { margin:0; font-size:1rem; font-weight:800; color:#111; line-height:1.14; display:block; max-width: calc(100% - 40px); }
.q-actions { display:flex; align-items:center; gap:10px; }
.copy-link { background:transparent; border:0; cursor:pointer; padding:6px; border-radius:8px; color:var(--muted); font-weight:700; }
.copy-link:hover { background: rgba(16,24,40,0.03); color:var(--purple-1); }
.chev { width:22px; height:22px; color:var(--muted); transition: transform .18s ease; }

.faq-a { max-height:0; overflow:hidden; transition: max-height .28s ease, padding .18s ease; padding:0 16px; }
.faq-a.open { padding:12px 16px 18px; max-height: 1000px; }

.answer { color:#333; line-height:1.6; }
.answer p { margin:0 0 8px 0; }
.tips { list-style:none; padding:0; margin:0; }

.side-card { position: sticky; top:24px; border-radius:12px; box-shadow: var(--shadow); }
.side-card .card-body { padding:16px; }
.side-card .muted { color:var(--muted); }

@media (max-width: 991.98px) {
  .hero-wrap { flex-direction:column; align-items:flex-start; }
  .hero-art { align-self:center; }
  .side-card { position: static; }
}

.muted { color: var(--muted); }
.card { border-radius: 12px; background:#fff; }

section[id], h2[id], h3[id], .faq-item { scroll-margin-top: 0; }

.card,
.side-card,
.summary,
.service-card,
.service-icon,
.q-badge,
.faq-item,
.policy-block,
.side-info .card,
.page-header,
.privacy-hero,
.terms-hero,
.hero-right,
.hero-art,
.hero-inner,
.hero-wrap {
  border-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.btn-primary{
  border-radius: 0 !important;
}
