.services-section{
    padding:90px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#2f3542;
    margin-bottom:15px;
}

.section-title h2 span{
    color:#ff2d55;
}

.section-title p{
    max-width:700px;
    margin:0 auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
    margin-bottom:30px;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-content{
    padding:25px;
    text-align:center;
}

.service-content h3{
    font-size:24px;
    font-weight:600;
    color:#2f3542;
    margin-bottom:15px;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.service-btn{
    display:inline-block;
    background:#ff2d55;
    color:#fff;
    padding:12px 28px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#000;
    color:#fff;
    text-decoration:none;
}