
/* styles.css - recreates the layout and colors from the reference image */
:root{
  --blue:#0b3aa6; /* deep Montana blue */
  --light-blue:#e9f0fb;
  --cta:#54c8ef;
  --text:#0b1b33;
  --footer-blue:#0b3390;
  --max-width:1200px;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%;font-family: 'Helvetica Neue', Arial, sans-serif;color:var(--text);background:#fff}
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px}

.header{background:var(--blue);color:#fff}
.header .topbar{height:62px;display:flex;align-items:center;justify-content:space-between;padding:0 24px}
.header nav{display:flex;gap:20px;align-items:center}
.header a{color:#fff;text-decoration:none;font-weight:600;font-size:15px}
.header .logo{display:flex;align-items:center;gap:12px}

.hero{display:flex;align-items:center;background:var(--light-blue);padding:48px 0;position:relative;overflow:hidden}
.hero .left{flex:0 0 45%;padding:32px 24px}
.hero h1{font-size:72px;line-height:0.9;color:var(--blue);font-weight:800;margin-bottom:16px;letter-spacing: -1px}
.hero p{max-width:420px;color:#0d2344;margin-bottom:22px;line-height:1.5}
.btn-cta{display:inline-block;padding:12px 18px;border-radius:8px;background:var(--cta);color:#fff;font-weight:700;text-decoration:none}

.hero .right{flex:1;display:flex;align-items:center;justify-content:center;padding-right:40px}
.hero .hero-img{max-width:100%;height:auto;box-shadow:inset 0 0 0 1000px rgba(255,255,255,0.0);transform:translateX(20px)}

/* footer */
.footer{background:var(--footer-blue);color:#fff;padding:48px 0;margin-top:26px}
.footer .cols{display:flex;gap:28px;max-width:var(--max-width);margin:0 auto;padding:0 24px}
.footer .col{flex:1}
.footer h3{font-size:18px;margin-bottom:12px;font-weight:800}
.footer p, .footer li{font-size:14px;color:rgba(255,255,255,0.9);line-height:1.6}
.footer ul{list-style:none;padding:0;margin:0}

/* responsive */
@media (max-width:900px){
  .hero{flex-direction:column;gap:16px;padding:24px 0}
  .hero .left{flex:unset;text-align:center}
  .hero h1{font-size:48px}
  .hero .right{padding:0}
  .footer .cols{flex-direction:column}
}
