.about-contact{
    margin-top:70px;
}

.about-contact__title{
    text-align:center;
    font-size:32px;
    margin-bottom:35px;
    color:#222;
}

.about-contact__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.about-contact__card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.about-contact__card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.about-contact__icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#f8f5ef;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
}

.about-contact__card h3{
    margin-bottom:15px;
    color:#222;
}

.about-contact__card a{
    color:#b68a35;
    text-decoration:none;
    font-weight:600;
    word-break:break-word;
}

.about-contact__card p{
    color:#666;
    line-height:2;
    margin:0;
}

@media(max-width:768px){

    .about-contact__grid{
        grid-template-columns:1fr;
    }

    .about-contact__title{
        font-size:26px;
    }

}