.contact-layer {
    background: var(--Primary-500, #167AD8);
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    color: #fff;
    padding-bottom: 45px;
    padding-top: 35px;
}

    .contact-layer h3 {
        color: var(--Neutral-White, #FFF);
        text-align: center;
        font-size: calc(1.5vw + 1rem); /* Adjust min, preferred, and max font size as needed */
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .contact-layer h6 {
        color: var(--Neutral-White, #FFF);
        text-align: center;
        font-size: calc(1vw + .5rem);
        font-style: normal;
        font-weight: 500;
        line-height: 187%;
        padding-top: 14px;
        padding-bottom: 25px;
    }

    .contact-layer a {
        border-radius: 12px;
        background: var(--Primary-50, #E8F3FD);
        color: #167AD8;
        margin: auto;
        display: block;
        width: 25%; /* Default width */
    }

        .contact-layer a:hover {
            color: #167AD8;
        }

@media screen and (min-width: 240px) {

    .contact-layer a {
        width: 72%; /* Keep default width */
    }
}

@media screen and (min-width: 576px) {


    .contact-layer a {
        width: 46%; /* Keep default width */
    }
}

@media screen and (min-width: 768px) {
    .contact-layer a {
        width: 25%; /* Keep default width */
    }
}


@media screen and (min-width: 992px) {
    .contact-layer a {
        width: 25%; /* Keep default width */
    }
}

@media screen and (min-width: 1200px) {

    .contact-layer a {
        width: 25%; /* Keep default width */
    }
}
