.contact-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 0 96px;
    max-width: 1028px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #006179;
    border-radius: 15px;
    width: 295px;
    min-height: 160px;
    padding: 30px 24px;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-card:hover {
    background: #004d5e;
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card__icon i {
    font-size: 50px;
    color: #FBFCFC;
}

.contact-card__icon img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.contact-card__text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24.6px;
    letter-spacing: 0;
    text-align: center;
    color: #ACEDD9;
}

@media (max-width: 768px) {
    .contact-cards {
        padding: 48px 0 48px;
    }

    .contact-card {
        width: 100%;
        flex-direction: row;
        min-height: 0;
        padding: 35px 24px;
    }

    .contact-card__icon img {
        height: 37px;
    }
}
