﻿.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
    border: 1px solid #eee;
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.contact-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-card p {
    color: #666;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-card table td {
    padding: 8px;
    color: #555;
}

.contact-map {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .contact-map iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 15px;
    }

@media(max-width:768px) {

    .contact-card {
        margin-bottom: 20px;
    }

    .contact-map iframe {
        height: 300px;
    }
}
