:root{
  --primary:#0f3f7a; /* deep navy */
  --accent:#178a4f;  /* green */
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#ffffff;
}

/* Base */
*{box-sizing:border-box}
html,body{
  margin:0; padding:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* Header / Nav */
.header{border-bottom:1px solid #e5e7eb;background:#fff;position:sticky;top:0;z-index:20}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}

.brand{display:flex;gap:10px;align-items:center;text-decoration:none}
.brand img{height:56px;width:auto} /* change to 64px if you want the logo bigger */

/* New brand text (title + tagline) */
.brand-text{display:flex;flex-direction:column;line-height:1.15}
.brand-title{
  font-weight:600;      /* lighter than bold */
  font-size:18px;
  color:var(--primary);
  letter-spacing:.1px;
}
.brand-tagline{
  font-weight:400;      /* regular (not bold) */
  font-size:24px;       /* ← increased from 14px */
  color:var(--muted);   /* softer grey */
}

/* Top navigation links */
.menu a{
  margin:0 12px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
}
.menu a.active,
.menu a:hover{ color:var(--primary) }

@media (max-width:900px){
  .brand img{height:48px}
  .brand-title{font-size:16px}
  .brand-tagline{font-size:14px}
}

/* Buttons */
.cta{display:inline-block;background:var(--accent);color:white;padding:10px 16px;border-radius:12px;text-decoration:none;font-weight:700}

/* Hero */
.hero{display:grid;grid-template-columns:1.2fr 1fr;gap:28px;align-items:center;padding:38px 0}
.hero img{width:100%;height:auto;border-radius:16px;box-shadow:0 8px 24px rgba(0,0,0,0.08)}
.badge{display:inline-block;background:#e8f5ee;color:var(--accent);padding:6px 10px;border-radius:999px;font-weight:700;font-size:12px;margin-bottom:10px}
.h1{font-size:42px;line-height:1.2;margin:6px 0 12px;font-weight:900;color:var(--primary)}
.lead{color:var(--muted);font-size:18px;margin-bottom:18px}

/* Layout helpers */
.grid{display:grid;gap:18px}
.cards{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));margin:18px 0 42px}
.card{border:1px solid #eef2f7;border-radius:16px;padding:18px;background:#fff;box-shadow:0 4px 14px rgba(0,0,0,0.04)}
.card h3{margin:6px 0 8px;font-size:18px;color:var(--primary)}
.card p{color:var(--muted);font-size:14px;margin:0}
.section{padding:28px 0}
.section h2{font-size:28px;color:var(--primary);margin:0 0 10px}

.responsive{max-width:100%;height:auto}
.banner{border-radius:16px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,0.06)}
.notice{font-size:12px;color:#9ca3af}
ul.clean{padding-left:18px;margin:8px 0}

/* Footer with background image the site already uses */
/* Footer — high contrast text */
.footer{
  border-top:1px solid #e5e7eb;
  margin-top:40px;
  padding:0;
  color:#fff;                 /* ← make all footer text white */
  font-size:14px;
  background:#0b2f4a;         /* fallback color behind the image edge */
}
.footer a{ color:#fff; text-decoration:none }
.footer a:hover{ text-decoration:underline }

/* Darken the image slightly so white text is readable */
.footer-inner{
  background-image:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),  /* overlay */
    url('images/footer_bg.JPG');
  background-size:cover;
  background-position:center;
  padding:18px 0;
}
/* Ensure every bit of footer text is white */
.footer, .footer * { color:#fff !important; }            /* covers spans, small, etc. */
.footer a{ color:#fff !important; text-decoration:none }
.footer a:hover{ text-decoration:underline }

/* Specifically override the grey .notice class when used in footer */
.footer .notice{ color:#fff !important; }
/* Footer layout + typography */
.footer .container{
  text-align:center;          /* center the whole line */
}

.footer .footer-text{
  font-size:14px;             /* uniform size for all parts */
  font-weight:400;
  line-height:1.4;
}

.footer .sep{
  margin:0 10px;              /* spacing around the || separators */
  font-weight:600;            /* slightly stronger divider */
}

.footer a{ color:#fff !important; text-decoration:none }
.footer a:hover{ text-decoration:underline }

/* Mobile tweaks */
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .brand img{height:48px}
  .brand-title{font-size:16px}
  .brand-tagline{font-size:13px}
}
