/* ── FAQ SECTION ──────────────────────────────────────────────
   Shared across all pages. Self-contained variables so it drops
   into any page regardless of which other stylesheet is loaded. */

.faq-section {
  --faq-green: #4caf50;
  --faq-bg: #2a2a2a;
  --faq-border: rgba(255, 255, 255, 0.1);
  background-color: var(--faq-bg);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Work Sans', sans-serif;
  padding: 88px 64px 96px;
}

.faq-section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.faq-section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faq-green);
  margin-bottom: 14px;
}

.faq-section__title {
  font-size: 38px;
  font-weight: 200;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.faq-section__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--faq-border);
  padding: 26px 4px;
}
.faq-item:first-child { border-top: 1px solid var(--faq-border); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { color: var(--faq-green); }

.faq-item__icon {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--faq-green);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  padding-top: 16px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 760px;
}
.faq-item__answer a {
  color: var(--faq-green);
  text-decoration: underline;
  transition: color 0.25s ease;
}
.faq-item__answer a:hover { color: #fff; }

@media (max-width: 768px) {
  .faq-section { padding: 56px 24px 64px; }
  .faq-section__title { font-size: 28px; }
  .faq-item__question { font-size: 16px; }
}
