*{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.service-card,
.blog-card{
background:rgba(255,255,255,0.06);
padding:30px;
border-radius:20px;
}

.blog-card img{
width:100%;
border-radius:15px;
margin-bottom:15px;
}

footer{
padding:60px 10%;
text-align:center;
background:black;
}

.socials a{
margin:10px;
color:#00ff88;
text-decoration:none;
}

.whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:600;
z-index:999;
}

@media(max-width:768px){

header{
padding:15px 20px;
flex-direction:column;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:18px;
}

}