.colored-contact-boxes {
    display: flex;
    justify-content: center;
}

.colored-contact-boxes__grid {
    display: grid;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(0, 540px));
    gap: 25px;
}

.colored-contact-boxes .contact__box {
    padding: 25px;
    color: var(--color-white);
    min-height: 316px;
}

.colored-contact-boxes .box__title {
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 130%;
    margin-bottom: 25px;
}

.colored-contact-boxes .box_columns {
    display: flex;
    gap: 55px;
}

.colored-contact-boxes .column__description {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

.colored-contact-boxes .column__description p {
    color: var(--color-white);
}

.colored-contact-boxes .column__link a {
    display: flex;
    gap: 10px;
    font-size: 15px;
    align-items: center;
    text-decoration: none !important; /* Override astra theme link styling */
    cursor: pointer;
    color: var(--color-white);
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 135%;
}

@media only screen and (max-width: 1200px) {
    .colored-contact-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .colored-contact-boxes {
        grid-template-columns: repeat(1, 1fr);
    }

    .colored-contact-boxes .contact__box {
        min-height: unset;
    }

    .colored-contact-boxes .box_columns {
        flex-direction: column;
        gap: 25px;
    }

    .colored-contact-boxes .column__description {
        font-size: 15px;
        line-height: 130%;
    }
}
