.cbw-faq-page{
  font-family:'Poppins',sans-serif;
  color:#1a1a1a;
  background:#fff;
  line-height:1.75;
  margin-top:0 !important;
  padding-top:0 !important;
}
.cbw-faq-page *{
  box-sizing:border-box;
}
.cbw-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* breadcrumb */
.cbw-breadcrumb-wrap{
  background:#f9fafb;
  border-bottom:1px solid #e5e7eb;
  padding:12px 0;
}
.cbw-breadcrumb{
  font-size:13px;
  color:#6b7280;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
}
.cbw-breadcrumb a{
  color:#111;
  text-decoration:none;
  font-weight:500;
}
.cbw-breadcrumb .current{
  color:#ffcd29;
  font-weight:700;
}

/* hero */
.cbw-faq-hero{
  position:relative;
  overflow:hidden;
  background:
		radial-gradient(circle at top right, rgba(255, 205, 41, 0.18), transparent 32%),
		linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  padding:50px 0 38px;
  text-align:center;
}
.cbw-hero-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 100%);
}
.cbw-faq-hero-inner{
  position:relative;
  z-index:2;
}
.cbw-faq-eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#111;
}
.cbw-faq-hero h1{
  margin:0 0 14px;
  font-size:46px;
  line-height:1.1;
  font-weight:800;
  color:#111;
}
.cbw-faq-hero p{
  max-width:850px;
  margin:0 auto;
  color:#4b5563;
  font-size:17px;
}

/* intro cards */
.cbw-faq-intro{
  background:#f7f7f7;
  border-top:1px solid #ececec;
  border-bottom:1px solid #ececec;
}
.cbw-faq-intro-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  padding:22px 0;
}
.cbw-faq-intro-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:16px;
  padding:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}
.cbw-faq-intro-card strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
  color:#111;
}
.cbw-faq-intro-card span{
  display:block;
  font-size:14px;
  color:#555;
}

/* layout */
.cbw-faq-content{
  padding:50px 0 60px;
}
.cbw-faq-layout{
  display:grid;
  grid-template-columns:290px minmax(0,1fr);
  gap:28px;
  align-items:start;
}
.cbw-faq-sidebar{
  position:sticky;
  top:24px;
  align-self:start;
}
.cbw-faq-sidebox{
  background:#111;
  color:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 14px 36px rgba(0,0,0,.08);
  margin-bottom:18px;
}
.cbw-faq-sidebox h3{
  margin:0 0 14px;
  font-size:22px;
  color:#fff;
}
.cbw-faq-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cbw-faq-nav a{
  color:rgba(255,255,255,.84);
  text-decoration:none;
  font-size:14px;
  line-height:1.5;
  padding:8px 10px;
  border-radius:10px;
  transition:all .2s ease;
}
.cbw-faq-nav a:hover{
  background:rgba(255,205,41,.12);
  color:#ffcd29;
}
.cbw-faq-sidebar-empty{
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

.cbw-faq-support-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:20px;
  padding:22px;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}
.cbw-faq-support-eyebrow{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#111;
  background:rgba(255,205,41,.18);
  padding:7px 11px;
  border-radius:999px;
}
.cbw-faq-support-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.25;
  color:#111;
}
.cbw-faq-support-card p{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.75;
  color:#555;
}

/* main */
.cbw-faq-main{
  min-width:0;
}
.cbw-faq-block{
  background:#fff;
  border:1px solid #ececec;
  border-radius:20px;
  padding:28px;
  margin-bottom:20px;
  box-shadow:0 10px 28px rgba(0,0,0,.04);
}
.cbw-faq-block h2{
  margin:0 0 16px;
  font-size:30px;
  line-height:1.2;
  color:#111;
}

/* accordion */
.cbw-faq-accordion{
  display:grid;
  gap:14px;
}
.cbw-faq-item{
  border:1px solid #ececec;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  transition:all .25s ease;
}
.cbw-faq-question{
  width:100%;
  background:#f8f9fb;
  border:0;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  text-align:left;
  cursor:pointer;
  font-size:16px;
  font-weight:700;
  line-height:1.5;
  color:#111;
  transition:all .25s ease;
}
.cbw-faq-question:hover{
  background:#fff7d7;
}
.cbw-faq-icon{
  position:relative;
  flex:0 0 16px;
  width:16px;
  height:16px;
}
.cbw-faq-icon::before,
.cbw-faq-icon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:16px;
  height:2px;
  background:#111;
  transform:translate(-50%, -50%);
  transition:all .25s ease;
}
.cbw-faq-icon::after{
  transform:translate(-50%, -50%) rotate(90deg);
}
.cbw-faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .28s ease;
}
.cbw-faq-answer-inner{
  overflow:hidden;
  padding:0 20px;
}
.cbw-faq-answer-inner p{
  margin:0 0 14px;
  font-size:15px;
  color:#4b4b4b;
}
.cbw-faq-answer-inner p:last-child{
  margin-bottom:0;
}
.cbw-faq-item.is-open{
  border-color:#f0e4ad;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
}
.cbw-faq-item.is-open .cbw-faq-question{
  background:#ffcd29;
  color:#111;
}
.cbw-faq-item.is-open .cbw-faq-answer{
  grid-template-rows:1fr;
}
.cbw-faq-item.is-open .cbw-faq-answer-inner{
  padding:18px 20px 20px;
}
.cbw-faq-item.is-open .cbw-faq-icon::after{
  opacity:0;
}

/* cta */
.cbw-faq-cta{
  margin-top:10px;
  background:linear-gradient(180deg,#111111 0%,#1b1b1b 100%);
  border-radius:22px;
  padding:28px;
  box-shadow:0 12px 32px rgba(0,0,0,.08);
}
.cbw-faq-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.cbw-faq-cta-kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#ffcd29;
}
.cbw-faq-cta-content h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.2;
  color:#fff;
}
.cbw-faq-cta-content p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.84);
  font-size:15px;
  line-height:1.8;
}

/* buttons */
.cbw-faq-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 22px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  transition:all .25s ease;
}
.cbw-faq-btn:hover{
  transform:translateY(-2px);
}
.cbw-faq-btn--dark{
  background:#111;
  color:#fff;
}
.cbw-faq-btn--dark:hover{
  background:#ffcd29;
  color:#111;
}
.cbw-faq-btn--yellow{
  background:#ffcd29;
  color:#111;
}
.cbw-faq-btn--yellow:hover{
  background:#ffd84f;
  color:#111;
}

/* astra fixes */
.cbw-faq-page .ast-container,
.cbw-faq-page .entry-content,
.cbw-faq-page .site-content > .ast-container,
.cbw-faq-page .site-main{
  max-width:100%;
  width:100%;
  margin:0;
  padding:0;
}
.cbw-faq-page .entry-header,
.cbw-faq-page .comments-area{
  display:none;
}

@media (max-width:1024px){
  .cbw-faq-layout{
    grid-template-columns:1fr;
  }
  .cbw-faq-sidebar{
    position:static;
  }
  .cbw-faq-intro-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .cbw-faq-hero{
    padding:42px 0 30px;
  }
  .cbw-faq-hero h1{
    font-size:34px;
  }
  .cbw-faq-hero p{
    font-size:15px;
  }
  .cbw-faq-block{
    padding:22px 18px;
  }
  .cbw-faq-block h2{
    font-size:25px;
  }
  .cbw-breadcrumb-wrap{
    padding:10px 0;
  }
  .cbw-faq-question{
    padding:16px 16px;
    font-size:15px;
  }
  .cbw-faq-item.is-open .cbw-faq-answer-inner{
    padding:16px 16px 18px;
  }
  .cbw-faq-cta{
    padding:22px 18px;
  }
  .cbw-faq-cta-content h2{
    font-size:25px;
  }
}

@media (max-width:480px){
  .cbw-container{
    padding:0 16px;
  }
  .cbw-faq-hero h1{
    font-size:28px;
  }
  .cbw-faq-sidebox h3,
  .cbw-faq-support-card h3{
    font-size:20px;
  }
}
/* =========================
   FAQ COLOR FIX (FINAL)
========================= */

/* DEFAULT STATE (CLOSED) */
.cbw-faq-question {
	background: #f8f9fb !important;
	color: #111 !important;
}

/* HOVER STATE */
.cbw-faq-question:hover {
	background: #ffcd29 !important;
	color: #111 !important;
}

/* ACTIVE (OPEN) STATE */
.cbw-faq-item.is-open .cbw-faq-question {
	background: #ffcd29 !important;
	color: #111 !important;
}

/* REMOVE BLUE COMPLETELY */
.cbw-faq-question:focus,
.cbw-faq-question:active {
	background: #ffcd29 !important;
	color: #111 !important;
	outline: none !important;
}

/* REMOVE ANY THEME BLUE OVERRIDE */
.cbw-faq-question,
.cbw-faq-question * {
	box-shadow: none !important;
}

/* ICON COLOR FIX */
.cbw-faq-icon::before,
.cbw-faq-icon::after {
	background: #111 !important;
}

/* ACTIVE ICON */
.cbw-faq-item.is-open .cbw-faq-icon::after {
	opacity: 0;
}
/* =========================
   SIDEBAR NAV UX IMPROVEMENT
========================= */

.cbw-faq-nav a {
	position: relative;
	padding: 10px 14px;
	border-radius: 10px;
	transition: all 0.25s ease;
}

/* HOVER EFFECT */
.cbw-faq-nav a:hover {
	background: rgba(255,205,41,0.15);
	color: #ffcd29;
	transform: translateX(4px);
}

/* ACTIVE LINK (SCROLL BASED) */
.cbw-faq-nav a.active {
	background: #ffcd29;
	color: #111;
	font-weight: 600;
}

/* LEFT INDICATOR BAR */
.cbw-faq-nav a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0%;
	background: #ffcd29;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* ACTIVE BAR */
.cbw-faq-nav a.active::before {
	height: 60%;
}

/* HOVER BAR */
.cbw-faq-nav a:hover::before {
	height: 40%;
}