:root{
  --gray:#bebebe;
  --blue:#011f65;
  --light:#4bafff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --bg:#ffffff;
  --shadow:0 10px 30px rgba(2,6,23,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:var(--bg)}

a{text-decoration:none;color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 16px}

.topbar{
  background:var(--gray);
  color:#fff;
  border-bottom:4px solid var(--light)
}

.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  gap:20px;
  min-height: 100px
}

.brand-logo{height:100px}
.brand-text{font-size:22px;font-weight:800}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 100px;
}


.header-right{
  display:flex;
  align-items:center;
  gap:18px
}

.header-info{
  font-size:13px;
  line-height:18px;
  opacity:.95
}


.hero-image {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;

}

.hero-image img {
  display: block;
  width: 100%;
  height: 480px;          /* adjust if needed */
  object-fit: cover;     /* fills the space cleanly */
}

.feature-panel {
  padding: 24px 0 32px;
}

.feature-inner {
  max-width: 1100px;      /* same as main container */
  margin: 0 auto;
  padding: 0 20px;
}

.feature-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-bottom: none;
}

.feature-title {
  font-weight: 700;
  color: #0b1f44;
  font-size: 15px;
}

.feature-btn {
  font-size: 14px;
  font-weight: 600;
  color: #0b1f44;
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  background: #ffffff;
}

.feature-btn:hover {
  background: #e5e7eb;
}

.feature-image {
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.feature-image img {
  display: block;
  width: 100%;
  height: 100%;         /* key: restrained height */
  object-fit: cover;
  object-position: center 60%;  /* pushes dark trees up */
}

.btn{
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent
}

.btn-primary{
  background:var(--light);
  color:#04122f
}

.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.4)
}

.hero{
  padding:56px 0;
  background:linear-gradient(180deg,rgba(1,31,101,.08),#fff)
}

.hero-inner{max-width:760px}

.kicker{
  display:inline-block;
  background:rgba(75,175,255,.2);
  color:var(--blue);
  padding:6px 12px;
  border-radius:999px;
  font-weight:800;
  margin-bottom:12px
}

h1{
  font-size:38px;
  line-height:44px;
  margin:0 0 14px 0
}

.lead{
  font-size:18px;
  line-height:28px;
  color:var(--muted)
}

.hero-actions{
  display:flex;
  gap:12px;
  margin:18px 0
}

.note{
  font-size:13px;
  color:var(--muted)
}

.programs{padding:40px 0}
.section-title{font-size:22px;margin-bottom:16px}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px
}

.card{
  background:#fff;
  border:1px solid var(--border);
  padding:18px;
  border-radius:16px;
  box-shadow:var(--shadow)
}

.card h3{
  margin:0 0 6px 0;
  color:var(--blue)
}

.card p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:22px
}

.continuity{padding:10px 0 48px 0}
.continuity p{max-width:760px;color:var(--muted);line-height:24px}

.footer{
  background:var(--blue);
  color:#fff;
  border-top:4px solid var(--light);
  padding:18px 0
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  font-size:13px;
  line-height:20px
}

.footer a{color:#fff}

@media(max-width:768px){
  .topbar-inner{flex-direction:column;align-items:flex-start}
  .header-right{width:100%;justify-content:space-between}
  h1{font-size:30px;line-height:36px}
}
