.ananda-contact-info,
.ananda-contact-info * {
    box-sizing: border-box;
}

.ananda-contact-info {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    background: #fbfaf6;
}

.ananda-contact-info__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* v1.7.8 Contact page alignment */

.ananda-contact-info__panel {
    position: relative;
    overflow: hidden;
    background: #fffdf8;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.ananda-contact-info__heading {
    margin: 0 0 34px;
    color: #071d4c;
    font-family: inherit;
    font-size: clamp(28px, 2.4vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: center;
}

.ananda-contact-info__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ananda-contact-info__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 330px;
    padding: 28px 24px 30px;
    background: #ffffff;
    border: 1px solid #e5e8ec;
    border-radius: 12px;
    color: inherit;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ananda-contact-info__card:hover,
.ananda-contact-info__card:focus {
    text-decoration: none;
    transform: translateY(-3px);
    border-color: rgba(47, 131, 59, .30);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.ananda-contact-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: #eef8e8;
    color: #24722e;
    font-size: 42px;
    line-height: 1;
}

.ananda-contact-info__icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ananda-contact-info__card-title {
    display: block;
    margin: 0 0 14px;
    color: #101828;
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.ananda-contact-info__card-text {
    display: block;
    margin: 0 0 36px;
    color: #253145;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}

.ananda-contact-info__card-value {
    display: block;
    margin-top: auto;
    color: #2d7f38;
    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.38;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 1024px) {
    .ananda-contact-info__inner {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .ananda-contact-info__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ananda-contact-info__card {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .ananda-contact-info__inner {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .ananda-contact-info {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .ananda-contact-info__panel {
        padding: 30px 18px !important;
    }

    .ananda-contact-info__heading {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .ananda-contact-info__cards {
        grid-template-columns: 1fr;
    }

    .ananda-contact-info__card {
        min-height: auto;
    }

    .ananda-contact-info__icon {
        width: 78px;
        height: 78px;
        font-size: 34px;
        margin-bottom: 20px;
    }

    .ananda-contact-info__card-title {
        font-size: 20px;
    }

    .ananda-contact-info__card-text,
    .ananda-contact-info__card-value {
        font-size: 17px;
    }
}
