.contact-box{
    max-width:700px;
    margin:40px auto;
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item i{
    width:50px;
    height:50px;
    background:#2b4c7e;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    flex-shrink:0;
}

.contact-item h3{
    margin:0 0 6px;
    color:#2b4c7e;
}

.contact-item p{
    margin:0;
    color:#555;
    line-height:1.6;
}

