.services-page {
    padding: 60px 0 80px;
}

.services-heading {
    margin-bottom: 35px;
}

.services-heading h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.services-heading p {
    max-width: 720px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
}

.service-block {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

.service-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-block img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

.service-block h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 14px 0;
    color: #111;
}

.service-block p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    text-align: justify;
}

.service-block .service-text {
    padding-top: 20px;
}

@media (min-width: 768px) {

    .service-block .service-text {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

}