*{box-sizing:border-box;margin:0;padding:0}
:root{
  --primary:#0f5a9b;
  --accent:#10a6e9;
  --text:#111;
  --muted:#666;
  --bg:#fff;
}
html,body{height:100%}
body{font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.6}
.wrapper{max-width:1200px;margin:0 auto;padding:0 20px}
a{color:var(--primary);text-decoration:none}
header{border-bottom:1px solid #eee;background:#fff;position:sticky;top:0;z-index:100;box-shadow:0 2px 10px rgba(0,0,0,.05)}
.topbar{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:16px}
.brand{display:flex;align-items:center;gap:18px}
.brand img{height:120px;width:auto}
.nav{display:flex;gap:28px;flex-wrap:wrap}
.nav a{font-weight:600;color:var(--primary)}
.phone{font-weight:700;font-size:18px;color:var(--primary)}
.phone a{font-size:18px;font-weight:700;color:var(--primary)}
.hero{padding:0;border-bottom:none}
.section{padding:64px 0;border-bottom:1px solid #eee}
.section h2{font-size:36px;font-weight:800;color:#2db6ff;margin-bottom:12px}
.section h3{font-size:22px;margin:8px 0 10px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:36px}
.card{border:1px solid #eee;border-radius:12px;padding:18px;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.06)}
.button{display:inline-block;background:var(--accent);color:#fff;padding:12px 20px;border-radius:10px;font-weight:700;border:1px solid rgba(0,0,0,.06)}
.button:hover{opacity:.95}
footer{padding:40px 0;background:#f7f9fc;border-top:1px solid #e9eef5}
.footer-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.footer h4{font-size:16px;margin-bottom:8px}
.small{color:var(--muted);font-size:14px}
ul{margin-left:18px}
li{margin:6px 0}
/* Top promo bar */
.topline{background:#0f5a9b;color:#fff;font-weight:600;text-align:center;padding:8px 12px;font-size:14px}
.topline a{color:#ffdf61;text-decoration:underline}

/* Hero with background image */
.hero-inner{position:relative;min-height:560px;display:flex;align-items:center;justify-content:center}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center;z-index:0;display:block}
.hero-content{position:relative;z-index:1;height:100%;width:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center}
.hero h1{color:#fff;font-size:64px;line-height:1.08;font-weight:800;margin:0;text-shadow:0 2px 6px rgba(0,0,0,.35)}

@media (max-width:768px){
  .hero-inner{min-height:420px}
  .hero h1{font-size:38px}
  .grid-2{grid-template-columns:1fr;gap:18px}
  .topbar{padding:12px 0}
}
