﻿.contact-card {
    background: #fff;
    border-top: 4px solid #004080; /* фірмовий синій */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
