.contact-page{

    padding:90px 0;

}

.contact-intro{

    max-width:800px;

    margin:25px auto 60px;

    text-align:center;

    font-size:20px;

    color:#555;

    line-height:1.9;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:28px;

}

.contact-card{

    background:#fff;

    padding:35px;

    border-radius:16px;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-6px);

}

.contact-card h3{

    margin-bottom:18px;

    color:#2563eb;

}

.contact-card a{

    text-decoration:none;

    color:#111827;

    word-break:break-word;

}

.contact-card p{

    color:#555;

    line-height:1.8;

}