.services-section{
    padding:100px 0;
    background:#f8f9fb;
}

.services-section h2{
    text-align:center;
    font-size:46px;
    color:#0A2540;
    margin:20px 0;
}

.section-description{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#0A2540;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}