*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f7fb;
color:#333;
}

.container{
max-width:1000px;
margin:auto;
padding:20px;
}

.hero{
background:white;
position:relative;
overflow:hidden;
}

.top{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:70px;
}

.director{
text-align:right;
}

.director h2{
color:#0a6ea8;
}

.contact{
display:grid;
gap:8px;
margin-top:15px;
}

.contact a{
text-decoration:none;
color:#333;
}

.wave{
height:80px;
background:linear-gradient(90deg,#0a6ea8,#2bb3d6);
border-bottom-left-radius:50% 40px;
border-bottom-right-radius:50% 40px;
}

.card{
background:white;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
margin-top:20px;
}

.services h2,
.about h2{
color:#0a6ea8;
margin-bottom:15px;
}

.services ul{
padding-left:20px;
display:grid;
gap:10px;
}

footer{
text-align:center;
padding:30px 15px;
}

.quote{
color:#0a6ea8;
font-style:italic;
margin-bottom:15px;
}

.copyright{
font-size:13px;
color:#777;
}

/* whatsapp */
.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* mobile */
@media(max-width:600px){
.logo img{
width:55px;
}
.director{
text-align:left;
}
.container{
padding:15px;
}
}
