*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,Helvetica,sans-serif;
background:#f5f7fb;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
background:linear-gradient(135deg,#0056b3,#0099ff);
color:#fff;
text-align:center;
padding:60px 20px;
}

.logo{
width:150px;
height:auto;
margin-bottom:15px;
}

h1{
font-size:42px;
margin-bottom:10px;
}

.tagline{
font-size:20px;
margin-bottom:25px;
color:#eaf6ff;
}

.buttons{
margin-top:20px;
}

.btn{
display:inline-block;
padding:12px 24px;
margin:8px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
background:#ffffff;
color:#0056b3;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 18px rgba(0,0,0,.2);
}

.whatsapp{
background:#25D366;
color:#fff;
}

.hero{
background:#ffffff;
text-align:center;
padding:70px 20px;
}

.hero h2{
font-size:34px;
margin-bottom:20px;
color:#0056b3;
}

.hero p{
max-width:850px;
margin:auto;
font-size:18px;
}

.services,
.why,
.hours,
.contact{
padding:70px 0;
}

.services{
background:#eef5ff;
}

.why{
background:#ffffff;
}

.hours{
background:#eef5ff;
text-align:center;
}

.contact{
background:#ffffff;
text-align:center;
}

.services h2,
.why h2,
.hours h2,
.contact h2{
text-align:center;
margin-bottom:35px;
color:#0056b3;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.contact p,
.hours p{
margin-bottom:12px;
font-size:17px;
}

footer{
background:#111827;
color:#ffffff;
text-align:center;
padding:35px 20px;
}

footer p{
margin-bottom:8px;
}

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
border-radius:50%;
background:#25D366;
color:#fff;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
box-shadow:0 8px 20px rgba(0,0,0,.25);
z-index:999;
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.12);
}

@media(max-width:768px){

```
h1{
    font-size:32px;
}

.hero h2{
    font-size:28px;
}

.hero p{
    font-size:16px;
}

.btn{
    display:block;
    width:220px;
    margin:10px auto;
}

.logo{
    width:120px;
}
```

}
