body{
font-family:Arial, Helvetica, sans-serif;
margin:0;
background:#f5f7fa;
}
header{
background:#0a4d8c;
color:white;
padding:20px;
text-align:center;
}
nav a{
color:white;
margin:0 10px;
text-decoration:none;
font-weight:bold;
}
.hero{
background:#e8f1fb;
padding:80px 20px;
text-align:center;
}
.hero h1{
font-size:40px;
}
.section{
padding:60px 20px;
max-width:1100px;
margin:auto;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}
.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 3px 8px rgba(0,0,0,0.1);
}
.btn{
background:#0a4d8c;
color:white;
padding:12px 20px;
text-decoration:none;
border-radius:5px;
display:inline-block;
margin-top:10px;
}
footer{
background:#0a4d8c;
color:white;
text-align:center;
padding:30px;
}
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}
input, select, textarea {
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ccc;
border-radius:5px;
}
button[type=submit]{
background:#0a4d8c;
color:white;
padding:15px;
border:none;
width:100%;
font-size:16px;
cursor:pointer;
}
button[type=submit]:hover{
background:#08335d;
}
/* Logo styling */
.logo {
    height: 70px;       /* Adjust the size as needed */
    display: block;     /* Ensures it sits nicely in the header */
    margin: 0 auto 10px auto; /* Centered with some bottom spacing */
}