/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* =========================
   LINKS & BUTTONS
========================= */
a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: #2e7d32;
  color: #fff;
}

.btn-outline {
  border: 1px solid #2e7d32;
  color: #2e7d32;
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-main {
  font-size: 20px;
  font-weight: 600;
  color: #2e7d32;
}

.logo-tagline {
  font-size: 12px;
  color: #666;
}

.nav a {
  margin-left: 18px;
  font-size: 14px;
  color: #333;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  padding: 70px 20px;
  background: #f7f9f6;
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  color: #555;
  margin-bottom: 25px;
}

/* =========================
   DASHBOARD STATS
========================= */
.stats {
  padding: 60px 20px;
}

.stats-inner {
  max-width: 1200px;
  margin: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #f7f9f6;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
}

.stat-card h2 {
  font-size: 34px;
  color: #2e7d32;
}

.stat-card p {
  font-size: 13px;
  color: #555;
}
.stat-card {
    display:block;
    text-decoration:none;
    color:inherit;
}

/* =========================
   SECTION GENERIC
========================= */
.section {
  padding: 60px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #f1f1f1;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #555;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}
