
:root{
  --navy:#17324d;
  --gold:#d5a84a;
  --light:#f5f7fa;
  --text:#1f2937;
  --muted:#667085;
  --white:#ffffff;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);background:var(--white);line-height:1.55}
header{background:var(--navy);color:white;padding:18px 28px;position:sticky;top:0;z-index:5}
.nav{max-width:1120px;margin:auto;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{font-weight:800;letter-spacing:.4px}.brand small{display:block;font-weight:500;color:#dbe6ef}
nav a{color:white;text-decoration:none;margin-left:18px;font-size:14px}
.hero{padding:72px 28px;background:linear-gradient(135deg,#17324d,#274f73);color:white}
.wrap{max-width:1120px;margin:auto}
.hero h1{font-size:48px;line-height:1.05;margin:0 0 18px}
.hero p{font-size:20px;max-width:760px;color:#e6eef5}
.btn{display:inline-block;background:var(--gold);color:#162536;text-decoration:none;font-weight:700;padding:13px 20px;border-radius:8px;margin:8px 10px 0 0}
.btn.alt{background:white;color:var(--navy)}
.section{padding:56px 28px}.section.alt{background:var(--light)}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:22px}
.card{background:white;border:1px solid #e6e9ee;border-radius:12px;padding:22px;box-shadow:0 4px 18px rgba(0,0,0,.05)}
.card h3{margin-top:0;color:var(--navy)}
.price{font-size:36px;font-weight:800;color:var(--navy)}
.muted{color:var(--muted)}
table{width:100%;border-collapse:collapse;background:white}
th,td{padding:12px;border-bottom:1px solid #e6e9ee;text-align:left}
th{background:#eef3f7;color:var(--navy)}
footer{background:#102539;color:#dfe8ef;padding:26px 28px;margin-top:40px}
footer .wrap{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
input,textarea{width:100%;padding:11px;border:1px solid #cbd5e1;border-radius:7px;margin:6px 0 14px}
button{background:var(--navy);color:white;border:0;border-radius:7px;padding:12px 18px;font-weight:700}
.badge{display:inline-block;background:#eaf0f5;color:var(--navy);padding:6px 10px;border-radius:999px;font-size:13px;font-weight:700}
@media(max-width:760px){nav{display:none}.hero h1{font-size:36px}}
