@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

.ccs-faq-fbb06da5 {
  --faq-primary: #1E90FF;
  --faq-accent:  #FFD700;
  --faq-navy:    #1a2a4a;
  --faq-border:  #d6e6f7;
  --faq-sky:     #e8f4ff;
  --faq-r:       12px;
  --faq-ff-head: 'Playfair Display', Georgia, serif;
  --faq-ff-body: 'DM Sans', system-ui, sans-serif;
  font-family: var(--faq-ff-body);
  color: #333;
  line-height: 1.75;
  font-size: 16px;
}

.ccs-faq-fbb06da5 *, 
.ccs-faq-fbb06da5 *::before, 
.ccs-faq-fbb06da5 *::after {
  box-sizing: border-box;
}

.ccs-faq-fbb06da5 a { 
  text-decoration: none; 
  color: var(--faq-primary); 
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.ccs-faq-fbb06da5 a:hover {
  opacity: 0.8;
}

/* SECTION */
.ccs-faq-fbb06da5 .faq-section { 
  padding: 84px 0; 
  background: #F2F2F2; 
}
.ccs-faq-fbb06da5 .faq-container { 
  max-width: 1180px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

/* HEADER */
.ccs-faq-fbb06da5 .faq-hdr { 
  text-align: center; 
  max-width: 740px; 
  margin: 0 auto 52px; 
}
.ccs-faq-fbb06da5 .faq-eyebrow {
  display: inline-block; 
  font-size: .71rem; 
  font-weight: 700;
  text-transform: uppercase; 
  letter-spacing: .13em;
  color: var(--faq-primary); 
  background: var(--faq-sky);
  padding: 4px 14px; 
  border-radius: 100px; 
  margin-bottom: 14px;
}
.ccs-faq-fbb06da5 .faq-hdr h2 {
  font-family: var(--faq-ff-head);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700; 
  color: var(--faq-navy);
  line-height: 1.22; 
  letter-spacing: -.01em;
  margin-bottom: 14px; 
  margin-top: 0;
  display: inline-block; 
  position: relative;
}
.ccs-faq-fbb06da5 .faq-hdr h2::after {
  content: ''; 
  display: block; 
  width: 48px; 
  height: 3px;
  background: var(--faq-accent); 
  border-radius: 2px; 
  margin: 10px auto 0;
}
.ccs-faq-fbb06da5 .faq-hdr p { 
  font-size: 1.03rem; 
  color: #555; 
  margin: 0;
}

/* ACCORDION WRAP */
.ccs-faq-fbb06da5 .faq-wrap { 
  max-width: 800px; 
  margin: 0 auto; 
}

/* ITEM */
.ccs-faq-fbb06da5 .faq-item {
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-r);
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}

/* QUESTION BUTTON */
.ccs-faq-fbb06da5 .faq-q {
  width: 100%; 
  text-align: left;
  padding: 18px 22px; 
  background: none; 
  border: none;
  cursor: pointer; 
  display: flex; 
  justify-content: space-between;
  align-items: center; 
  gap: 14px;
  font-family: var(--faq-ff-head); 
  font-size: .93rem;
  font-weight: 600; 
  color: var(--faq-navy);
  transition: color .15s;
}
.ccs-faq-fbb06da5 .faq-q:hover { 
  color: var(--faq-primary); 
}

/* CHEVRON */
.ccs-faq-fbb06da5 .faq-chev {
  width: 24px; 
  height: 24px;
  background: var(--faq-sky); 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--faq-primary); 
  flex-shrink: 0;
  transition: transform .25s;
}
.ccs-faq-fbb06da5 .faq-chev svg {
  width: 10px; 
  height: 10px;
  stroke: var(--faq-primary); 
  fill: none;
  stroke-width: 2.5; 
  stroke-linecap: round; 
  stroke-linejoin: round;
  transition: transform .25s;
}
.ccs-faq-fbb06da5 .faq-item.faq-open .faq-chev svg { 
  transform: rotate(180deg); 
}

/* ANSWER PANEL */
.ccs-faq-fbb06da5 .faq-a {
  max-height: 0; 
  overflow: hidden;
  transition: max-height .32s ease, padding .32s;
  padding: 0 22px;
}
.ccs-faq-fbb06da5 .faq-a p { 
  font-size: .9rem; 
  color: #555; 
  line-height: 1.75; 
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .ccs-faq-fbb06da5 .faq-section { padding: 48px 0; }
  .ccs-faq-fbb06da5 .faq-q { font-size: .88rem; padding: 15px 16px; }
}
