*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f8fbfd;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:#ffffff;
padding:20px 0;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:28px;
font-weight:800;
color:#1b5e7a;
}

.btn-top{
background:#00b8a9;
color:#fff;
padding:12px 25px;
border-radius:50px;
text-decoration:none;
font-weight:600;
}

.hero{
padding:80px 0;
}

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
}

.hero-text{
flex:1;
}

.hero-image{
flex:1;
text-align:center;
}

.hero-image img{
max-width:100%;
}

.badge{
background:#ffd54f;
padding:10px 18px;
border-radius:30px;
font-weight:700;
display:inline-block;
margin-bottom:20px;
}

.hero h1{
font-size:60px;
line-height:1.1;
color:#0b4f6c;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:25px;
}

.hero ul{
list-style:none;
margin-bottom:30px;
}

.hero li{
margin-bottom:10px;
font-size:18px;
}

.btn-primary{
display:inline-block;
background:#00b894;
padding:18px 40px;
border-radius:60px;
color:white;
text-decoration:none;
font-weight:700;
}

.benefits{
padding:80px 0;
background:white;
}

.benefits h2,
.content h2,
.bonus h2,
.cta h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#0b4f6c;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}

.card h3{
margin:15px 0;
}

.content{
padding:80px 0;
}

.content-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.content-grid div{
background:white;
padding:25px;
border-radius:15px;
font-weight:600;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.bonus{
padding:80px 0;
background:#f0faf8;
}

.bonus ul{
max-width:700px;
margin:auto;
list-style:none;
}

.bonus li{
padding:15px;
font-size:20px;
}

.cta{
padding:100px 0;
text-align:center;
background:linear-gradient(
135deg,
#00b8a9,
#36d1dc
);
color:white;
}

.cta p{
margin-bottom:30px;
font-size:22px;
}

footer{
padding:30px;
text-align:center;
background:#0b4f6c;
color:white;
}

@media(max-width:768px){

.hero-content{
flex-direction:column;
}

.hero h1{
font-size:42px;
}

}