body{
margin:0;
font-family:Arial,sans-serif;
line-height:1.6;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.1);
position:sticky;
top:0;
}

.logo img{
height:70px;
}

nav ul{
display:flex;
list-style:none;
gap:20px;
}

nav a{
text-decoration:none;
color:#003a8c;
font-weight:bold;
}

.hero{
background:#003a8c;
color:white;
text-align:center;
padding:120px 20px;
}

.btn{
background:#f0b323;
padding:12px 25px;
text-decoration:none;
color:white;
border-radius:5px;
}

section{
padding:60px 10%;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
padding:25px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,.1);
text-align:center;
}

.card i{
font-size:40px;
color:#003a8c;
}

.discount{
background:#f0b323;
text-align:center;
color:#fff;
}

.features{
display:flex;
justify-content:space-around;
flex-wrap:wrap;
gap:20px;
}

.features i{
font-size:40px;
color:#003a8c;
}

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:auto;
}

input,textarea{
padding:12px;
}

button{
background:#003a8c;
color:white;
border:none;
padding:12px;
cursor:pointer;
}

footer{
background:#001d4d;
color:white;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
font-size:30px;
padding:15px;
border-radius:50%;
}