/* ============================================================
   associations/contacts.css
   ============================================================ */

contacts {
    display: block;
    width: 100%;
    background: #e6e6e6;
    padding: 40px 0;
    color: #222;
}

contacts .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    position: relative;
}

contacts h3 {
    margin-bottom: 20px;
    color: #379CD0;
    font-size: 2rem;
}

.contacts-menu {
    display: flex;
    flex-wrap: balance;
    justify-content: center;
    list-style: none;
    padding: 10px 0;
    gap: 20px;
}

.contacts-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.2s;
    background: #f4f4f4;
    padding: 14px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    gap: 10px;
    width: 150px;
    min-height: 130px;
    justify-content: center;
    text-align: center;
}

.contacts-menu li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    background: #fff;
    color: #379CD0;
}

.contacts-menu li a img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
