.faq-page { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
.faq-page h1 { font-size: 32px; font-weight: 800; color: #111; margin-bottom: 8px; }
.faq-page .subtitle { font-size: 15px; color: #777; margin-bottom: 36px; }
.faq-section { margin-top: 36px; }
/* When the browser scrolls to a section anchor (e.g. /faq.html#installation),
   reserve enough space above the section title to clear the sticky header
   (~65px) plus breathing room. Without this, the sticky header overlaps the
   "INSTALLATION" section label and the first accordion question appears at
   the apparent top of the viewport. */
.faq-section[id] { scroll-margin-top: 96px; }
.faq-section-title { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #1D19FA; margin-bottom: 8px; }
.acc-item { border-bottom: 2px solid #e5e5e5; }
.acc-item:first-child { border-top: 2px solid #e5e5e5; }
.acc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 4px;
  border: none;
  background: none;
  font: 600 16px/1.4 'Inter', sans-serif;
  color: #111;
  cursor: pointer;
  text-align: left;
}
.acc-head:hover { color: #555; }
.acc-head .chev {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.acc-item.open .acc-head .chev { transform: rotate(-135deg); }
.acc-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.acc-item.open .acc-body { max-height: 800px; }
.acc-inner { padding: 0 4px 24px; font-size: 15px; line-height: 1.65; color: #555; }
.acc-inner p { margin: 0 0 12px; }
.acc-inner p:last-child { margin-bottom: 0; }
.acc-inner a { color: #1D19FA; text-decoration: none; font-weight: 500; }
.acc-inner a:hover { text-decoration: underline; }
.faq-cta { margin-top: 56px; padding: 28px; background: #f7f7f7; border-radius: 12px; text-align: center; }
.faq-cta h3 { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 6px; }
.faq-cta p { font-size: 14px; color: #666; margin-bottom: 16px; }
.faq-cta a {
  display: inline-block;
  padding: 12px 28px;
  background: #F5A623;
  color: #111;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
}
.faq-cta a:hover { background: #e5961f; text-decoration: none; color: #111; }
