body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.service-header {
    height: 260px;
    background-image: url('../uploads/header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.service-header .dark {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.service-header .headhead {
    font-size: 30px;
    margin-top: 50px;
}

.service-header .headtext {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.service-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px 40px 20px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 36px 28px 28px 28px;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 24px rgba(102,171,54,0.13);
}

.service-icon {
    font-size: 2.5em;
    color: #66AB36;
    margin-bottom: 18px;
}

.service-item h2 {
    color: #66AB36;
    font-size: 1.4em;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.service-item p {
    font-size: 1em;
    color: #444;
}

.whatsapp-btn-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.whatsapp-btn{
    width: 80%;
    height: 60px;
    border-radius: 25px;
    background-color: #66AB36;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

footer {
    width: 100%;
    height: 220px;
    background-color: #222222;
    color: white;
    text-align: center;
    padding: 20px 0;
}