
.contact-card {
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.2s ease-in-out;
    text-align: left;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    color: #d70000;
    font-size: 1.75rem;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.contact-entry {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

.contact-entry a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
}

.contact-entry a:hover {
    color: #d70000;
}

.contact-card h5 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: #000;
}
