/* ===============================
   PLATFORM1 – FAQ PAGE
   Content CSS Only
   (No Navbar / Footer)
================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;

  --text-main: #0f172a;
  --text-muted: #475569;

  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;

  --border-light: #e2e8f0;

  --radius: 14px;
}

/* ---------- Base ---------- */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.7;
}

.container {
  max-width: 920px; /* narrower for reading */
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ===============================
   HERO
================================ */
.hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #ffffff 100%
  );
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===============================
   SECTIONS
================================ */
.section {
  padding: 4.5rem 0;
}

.section.light {
  background: var(--bg-light);
}

.section p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===============================
   FAQ ITEMS
================================ */
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin-bottom: 1.4rem;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

/* .faq-item:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
} */

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.faq-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* ===============================
   CTA
================================ */
.cta {
  padding: 80px 0;
  background: #0f766e;

  text-align: center;
  color: #ffffff;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 2.2rem;
  font-size: 0.95rem;
  color: #e6e6e6;
}

.btn-primary {
  background: #fff;
  color: #0f766e;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e0f4f2;

}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .cta h2 {
    font-size: 1.9rem;
  }

  .faq-item {
    padding: 1.5rem 1.4rem;
  }
}
