:root{
  --green:#1E6B3A; --gold:#D4A017; --blue:#3A90D6; --off:#FAF9F6; --ink:#0F172A;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
body{
  min-height:100vh;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color:#111827;
}
.hero{padding:28px 16px 8px;text-align:center;color:#fff}
.logo{width:140px;height:auto;filter:drop-shadow(0 6px 18px rgba(0,0,0,.25))}
h1{margin:12px 0 2px;font-size:2rem;text-shadow:0 1px 2px rgba(0,0,0,.25)}
.motto{margin:0;color:var(--gold);font-weight:800}
.tagline{margin:6px 0 0;color:#E6F1FB}

main{max-width:1080px;margin:0 auto;padding:0 16px 48px}
.card{
  background:#fff;border-radius:16px;margin:18px 0;padding:18px 20px;
  box-shadow:0 18px 36px rgba(0,0,0,.16)
}
.card h2{margin:0 0 8px;color:var(--green)}
.card p{margin:0.25rem 0 0 0;color:#334155}

.section-with-image{
  display:grid;align-items:center;gap:16px;
  grid-template-columns: 1.2fr 1fr;
}
.section-with-image .section-img{
  width:100%;height:260px;object-fit:cover;border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.15)
}
.section-with-image .text{padding-right:6px}

.center{text-align:center}
.footer{ text-align:center; color:#E6F1FB; padding:16px 16px 28px }

@media (max-width:800px){
  .section-with-image{grid-template-columns:1fr}
  .section-with-image .section-img{height:200px}
}
