
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{box-sizing:border-box}
body{margin:0;font-family:Poppins,sans-serif;color:#1F2937;background:#fff;line-height:1.6}
.container{width:90%;max-width:1200px;margin:auto}
.topbar{background:#0f172a;color:#fff;padding:10px 0;font-size:14px}
.topbar-flex{display:flex;justify-content:space-between;flex-wrap:wrap}
header{position:sticky;top:0;background:#fff;z-index:1000;box-shadow:0 2px 15px rgba(0,0,0,.05)}
.navbar{display:flex;justify-content:space-between;align-items:center;padding:18px 0}
.logo img{height:58px}
nav a{margin:0 12px;color:#1F2937;text-decoration:none;font-weight:500}
.btn{background:#1E3A8A;color:#fff;padding:12px 22px;border-radius:8px;text-decoration:none;display:inline-block}
.btn-green{background:#16A34A;color:#fff;padding:12px 22px;border-radius:8px;text-decoration:none;display:inline-block}
.hero{background:linear-gradient(rgba(15,23,42,.72),rgba(15,23,42,.72)),url('https://images.unsplash.com/photo-1460317442991-0ec209397118?q=80&w=1600&auto=format&fit=crop');background-size:cover;background-position:center;padding:120px 0;color:#fff}
.hero h1{font-size:56px;line-height:1.1;max-width:850px}
.hero p{max-width:800px;font-size:18px;color:#e5e7eb}
.tag{display:inline-block;background:#16A34A;padding:8px 14px;border-radius:30px;font-size:14px;margin-bottom:18px}
.buttons{margin-top:30px}
.buttons a{margin-right:12px}
.section{padding:90px 0}
.section-title{text-align:center;margin-bottom:50px}
.section-title h2{font-size:40px;color:#1E3A8A;margin-bottom:10px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px}
.card{background:#fff;border-radius:14px;padding:28px;box-shadow:0 10px 30px rgba(0,0,0,.06);transition:.3s}
.card:hover{transform:translateY(-6px)}
.badges{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.badge{background:#eef2ff;color:#1E3A8A;padding:10px 16px;border-radius:30px;font-weight:600}
.grey{background:#F5F7FA}
.review{font-style:italic}
.footer{background:#0f172a;color:#fff;padding:60px 0 30px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:30px}
.footer a{color:#cbd5e1;text-decoration:none;display:block;margin:8px 0}
.whatsapp-float{position:fixed;bottom:20px;right:20px;background:#16A34A;color:#fff;padding:14px 18px;border-radius:50px;text-decoration:none;font-weight:600;box-shadow:0 10px 25px rgba(0,0,0,.2)}
form input, form textarea{width:100%;padding:14px;border:1px solid #ddd;border-radius:8px;margin-bottom:14px;font-family:Poppins}
@media(max-width:768px){
.hero h1{font-size:38px}
nav{display:none}
.footer-grid{grid-template-columns:1fr}
}
