body{
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom,#f8f9fa,#dfe9f3);
    color:#333;
    text-align:center;
    margin:0;
    padding:0;
}

.banner{
    width:100%;
    height:auto;
    display:block;
}

h1{
    color:#008060;
    margin-top:20px;
}

p{
    font-size:18px;
    margin:10px;
}

a{
    display:inline-block;
    margin:10px;
    padding:12px 20px;
    background:#008060;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

a:hover{
    background:#00664d;
}

.gallery-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin:30px auto;
}

.gallery{
    width:300px;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}

.services{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin:40px 20px;
}

.card{
    width:280px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
    transition:0.3s;
}

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

footer{
    background:#222;
    color:#fff;
    padding:20px;
    margin-top:40px;
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
}
.card{
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}
a{
    transition:0.3s;
}

a:hover{
    transform:translateY(-2px);
}
.service-area{
    background:#ffffff;
    margin:40px 20px;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,.15);
}

.service-area h2{
    color:#008060;
    margin-bottom:15px;
}

.service-area p{
    line-height:1.8;
}