/* =========================
   BASE (match your landing theme)
========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root{
  --primary:#207a43;
  --secondary:#17705a;
  --light:#f9fefb;
  --ink-1:#111;
  --ink-2:#333;
  --ink-3:#777;
  --bg:#e9fbe9;
  --card:#fff;
}

html{ scroll-behavior:smooth; }
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji", sans-serif;
  background: var(--bg);
  color: var(--ink-1);
  line-height: 1.6;
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* =========================
   HEADER (same as landing)
========================= */
.site-header{
  background: linear-gradient(to right, #b0f0c2, var(--primary));
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
}

.logo-img{
  height: 70px;
  width: auto;
  display:block;
}

.nav-links{
  display:flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links .tab{
  text-decoration:none;
  font-weight:600;
  color: var(--ink-2);
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 8px;
  background:#fff;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.nav-links .tab:hover{
  background:#c3f2d2;
  color: var(--primary);
  transform: translateY(-2px);
}

/* =========================
   HERO
========================= */
.hero{
  background: var(--light);
  padding: 70px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.hero h1{
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}

.hero-sub{
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
}

/* =========================
   CONTENT
========================= */
.page{
  background: #f5fff7;
}

.section-title{
  text-align:center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 24px;
}

.cards{
  display:flex;
  justify-content:center;
}

.card{
  width: 100%;
  max-width: 900px;
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  padding: 26px 26px 22px;
}

.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf6ef;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.card h3{
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.card-lead{
  color: var(--ink-2);
  margin-bottom: 12px;
}

.meta{
  display:grid;
  gap: 6px;
  color: #2b2b2b;
  font-size: 0.98rem;
}

.divider{
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 18px 0;
}

.opps{
  margin-top: 14px;
  background: #fbfffd;
  border: 1px solid rgba(32,122,67,0.12);
  border-radius: 12px;
  padding: 14px 14px 10px;
}

.opps h4{
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--ink-1);
}

.opps ul{
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.opps li{
  color: var(--ink-2);
}

.card-actions{
  margin-top: 14px;
}

.link{
  display:inline-block;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

.link:hover{
  color: var(--primary);
  text-decoration: underline;
}

/* =========================
   BACK BUTTON + FOOTER
========================= */
.back-wrap{
  display:flex;
  justify-content:center;
  margin-top: 26px;
}

.btn{
  display:inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  text-decoration:none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover{
  background: #3c5ea6;
  transform: translateY(-2px);
}

.footer{
  text-align:center;
  padding: 26px 10px;
  background: #f0f0f0;
  color: #555;
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px){
  .hero h1{ font-size: 1.9rem; }
  .card{ padding: 20px; }
  .nav-container{ flex-direction: column; align-items: center; }
  .nav-links{ justify-content: center; gap: 10px; }
  .nav-links .tab{ font-size: 0.9rem; padding: 8px 14px; }
}


/* Center the pill container */
.card {
  text-align: center;
}

/* Keep pill natural size (not stretched) */
.card .pill {
  display: inline-block;
  margin-bottom: 12px;
}

/* Center only title + intro parts, not full text */
.card h3,
.card-lead {
  text-align: center;
}

/* Return body text to readable left alignment */
.meta,
.card p,
.opps,
.opps ul {
  text-align: left;
}



