.hg-services{
    padding:90px 20px;
    background:#f8f6f2;
}

.hg-services-head{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.hg-services-head span{
    display:block;
    margin-bottom:12px;
    color:#f28c18;
    font-size:13px;
    font-weight:700;
    letter-spacing:.18em;
}

.hg-services-head h2{
    margin:0;
    font-size:clamp(34px,4vw,56px);
    line-height:1.05;
    color:#0b4b3a;
    font-weight:800;
}

.hg-services-head p{
    margin:20px auto 0;
    max-width:650px;
    color:#66716d;
    font-size:17px;
    line-height:1.8;
}

.hg-services-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.hg-service-card{
    position:relative;
    padding:40px;
    border-radius:30px;
    background:#fff;
    border:1px solid rgba(11,75,58,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.35s;
}

.hg-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.hg-service-icon{
    width:68px;
    height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:#fff5e7;
    font-size:28px;
    margin-bottom:24px;
}

.hg-service-card h3{
    margin:0 0 16px;
    font-size:28px;
    color:#0b4b3a;
    font-weight:700;
}

.hg-service-card p{
    margin:0;
    color:#66716d;
    line-height:1.8;
    min-height:120px;
}

.hg-service-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:28px;
    padding:14px 24px;
    border-radius:999px;
    background:#0b4b3a;
    color:#fff !important;
    text-decoration:none !important;
    font-weight:700;
}

.hg-service-card a:hover{
    background:#f28c18;
}

.hg-highlight{
    background:#0b4b3a;
    color:#fff;
}

.hg-highlight h3{
    color:#fff;
}

.hg-highlight p{
    color:rgba(255,255,255,.75);
}

.hg-highlight .hg-service-icon{
    background:rgba(255,255,255,.12);
}

.hg-highlight a{
    background:#f28c18;
}

.hg-highlight a:hover{
    background:#fff;
    color:#0b4b3a !important;
}

@media(max-width:1024px){

    .hg-services-grid{
        grid-template-columns:1fr;
    }

    .hg-service-card p{
        min-height:auto;
    }

}