:root {
  --green: #1a7a1a;
  --green-dark: #0f4f0f;
  --green-light: #e8f5e9;
  --red: #cc0000;
  --gold: #c8970f;
  --gold-light: #fff8e1;
  --white: #ffffff;
  --off-white: #f8f9f8;
  --text: #1e1e1e;
  --text-light: #555555;
  --border: #dde5dd;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }

/* ── Header ── */
header {
  background: var(--green);
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  background: white;
  padding: 3px;
}

.header-text h1 { font-size: 1.35rem; font-weight: 700; color: white; line-height: 1.2; }
.header-text p  { font-size: .82rem; color: #b9e0b9; font-style: italic; }

/* ── Nav ── */
nav { background: var(--green-dark); position: sticky; top: 0; z-index: 100; }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links { display: flex; flex-wrap: wrap; }

nav a {
  display: inline-block;
  color: #d4edda;
  padding: 13px 17px;
  font-size: .92rem;
  font-weight: 500;
  transition: background .18s;
}

nav a:hover, nav a.active {
  background: var(--green);
  color: white;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 13px 17px;
  margin-left: auto;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  text-align: center;
  padding: 80px 24px 72px;
}

.hero h2 { font-size: 2.5rem; margin-bottom: 14px; line-height: 1.2; }
.hero p  { font-size: 1.1rem; max-width: 620px; margin: 0 auto 32px; opacity: .9; }

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-gold         { background: var(--gold); color: white; }
.btn-gold:hover   { background: #a07a00; color: white; text-decoration: none; }

.btn-white        { background: white; color: var(--green-dark); }
.btn-white:hover  { background: #eaf4ea; color: var(--green-dark); text-decoration: none; }

.btn-green        { background: var(--green); color: white; }
.btn-green:hover  { background: var(--green-dark); color: white; text-decoration: none; }

.btn-red          { background: var(--red); color: white; }
.btn-red:hover    { background: #a00000; color: white; text-decoration: none; }

.btn-whatsapp       { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1ab050; color: white; text-decoration: none; }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline:hover { background: white; color: var(--green-dark); text-decoration: none; }

/* ── Page banner ── */
.page-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 52px 24px;
  text-align: center;
}

.page-banner h1 { font-size: 2.1rem; margin-bottom: 8px; }
.page-banner p  { opacity: .85; max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Main wrapper ── */
main { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

section { padding: 56px 0; }
section + section { border-top: 1px solid var(--border); }

h2.section-title { font-size: 1.75rem; color: var(--green-dark); margin-bottom: 6px; }
.section-subtitle { color: var(--text-light); margin-bottom: 28px; font-size: 1rem; }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 22px;
}

.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  transition: box-shadow .2s, transform .2s;
}

.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); transform: translateY(-2px); }

.card-icon { font-size: 2.2rem; margin-bottom: 10px; }
.card h3   { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 7px; }
.card p    { color: var(--text-light); font-size: .93rem; }

/* ── Info boxes ── */
.info-banner {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin: 22px 0;
}

.info-banner h3 { color: var(--green-dark); margin-bottom: 6px; }

.highlight-box {
  background: var(--gold-light);
  border: 1px solid #e5c040;
  border-radius: 8px;
  padding: 22px;
  margin: 22px 0;
}

.highlight-box h3 { color: #7a5800; margin-bottom: 8px; }

.red-banner {
  background: #fff5f5;
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  border-radius: 0 6px 6px 0;
  margin: 22px 0;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Table ── */
table { width: 100%; border-collapse: collapse; margin: 14px 0; }
th, td { text-align: left; padding: 11px 15px; border-bottom: 1px solid var(--border); }
th { background: var(--green); color: white; font-weight: 600; }
tr:nth-child(even) td { background: var(--off-white); }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }

label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: .93rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .97rem;
  font-family: inherit;
  transition: border-color .2s;
  background: white;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,26,.1);
}

textarea { resize: vertical; min-height: 120px; }

/* ── CTA strip ── */
.cta-section {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 60px 24px;
  margin: 56px -24px 0;
}

.cta-section h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-section p  { font-size: 1.05rem; opacity: .9; margin-bottom: 26px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── Staff cards ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.staff-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
}

.staff-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--green-light);
  border: 3px solid var(--green);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.staff-card h3     { color: var(--green-dark); font-size: 1rem; margin-bottom: 3px; }
.staff-card .role  { color: var(--red); font-size: .83rem; font-weight: 600; margin-bottom: 8px; }
.staff-card p      { font-size: .88rem; color: var(--text-light); font-style: italic; }

/* ── Verse / pledge box ── */
.verse-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 22px 24px;
  border-radius: 0 8px 8px 0;
  margin: 14px 0;
}

.verse-box p { font-style: italic; line-height: 2; }

/* ── Steps ── */
.steps { counter-reset: step; list-style: none; }

.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.steps li::before {
  content: counter(step);
  min-width: 36px;
  height: 36px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.steps li div strong { display: block; margin-bottom: 2px; color: var(--green-dark); }
.steps li div span   { font-size: .93rem; color: var(--text-light); }

/* ── Contact info ── */
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

/* ── Footer ── */
footer { background: var(--green-dark); color: #b9d9b9; padding: 48px 0 0; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

footer h3  { color: white; margin-bottom: 12px; font-size: .97rem; }
footer p   { font-size: .88rem; line-height: 1.75; }
footer ul  { list-style: none; }
footer li  { font-size: .88rem; margin-bottom: 6px; }
footer li a { color: #b9d9b9; }
footer li a:hover { color: white; }

.footer-bottom {
  text-align: center;
  padding: 18px 24px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  color: #7eb07e;
}

.badge-founding {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 12px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero h2       { font-size: 1.8rem; }
  .page-banner h1 { font-size: 1.6rem; }
  .two-col       { grid-template-columns: 1fr; gap: 24px; }
  .nav-toggle    { display: block; }
  .nav-links     { display: none; flex-direction: column; width: 100%; }
  .nav-links.open { display: flex; }
  nav a          { border-bottom: 1px solid rgba(255,255,255,.1); }
  .cta-section   { margin: 56px 0 0; }
  h2.section-title { font-size: 1.45rem; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .header-text h1 { font-size: 1.05rem; }
  .footer-inner   { grid-template-columns: 1fr; }
}
