:root {
  --primary-color: #166534;
  --secondary-color: #ea580c;
  --secondary-hover: #c2410c;
  --bg-light: #f0fdf4;
  --text-dark: #1e293b;
  --text-light: #475569;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
  background-color: var(--bg-light); 
  color: var(--text-dark); 
  line-height: 1.6; 
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* HEADER */
header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.logo-mark {
  background: var(--white);
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 800;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.logo-text h1 { font-size: 22px; line-height: 1; margin: 0; }
.logo-text span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #bbf7d0; }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: #bbf7d0; text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); font-weight: 700; }
.btn-nav { background: var(--secondary-color); color: var(--white) !important; padding: 8px 20px; border-radius: 30px; font-weight: bold; }
.btn-nav:hover { background: var(--secondary-hover); }

/* CONTENT WRAPPER */
main { flex: 1; padding: 40px 0; }

.page-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.title-main { font-size: 32px; color: var(--primary-color); margin-bottom: 20px; line-height: 1.3; }

/* NEW FOOTER */
footer {
  background: #062415; /* Very dark green from screenshot */
  color: #cbd5e1;
  padding: 60px 20px 20px;
  margin-top: auto;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  color: #ffffff;
  margin-bottom: 15px;
}
.footer-col p { margin-bottom: 12px; line-height: 1.5; }
.footer-highlight { color: #10b981; font-weight: bold; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: #cbd5e1;
  text-decoration: underline;
  font-size: 13px;
}
.footer-links a:hover { color: #10b981; }

@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 15px; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
