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

.ananda-contact-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #fffdf8 0%, #fffdf8 44%, rgba(255,253,248,.72) 56%, rgba(255,253,248,0) 68%), #fffdf8;
}

.ananda-contact-hero__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-hero__panel {
    position: relative;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.ananda-contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
    align-items: center;
    gap: 48px;
}

.ananda-contact-hero--image-text .ananda-contact-hero__grid {
    direction: rtl;
}

.ananda-contact-hero--image-text .ananda-contact-hero__content,
.ananda-contact-hero--image-text .ananda-contact-hero__image-wrap {
    direction: ltr;
}

.ananda-contact-hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.ananda-contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 40px;
    background: #effbe9;
    color: #246d32;
    border: 1px solid rgba(36, 109, 50, .10);
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    padding: 15px 24px;
    border-radius: 999px;
}

.ananda-contact-hero__badge-icon,
.ananda-contact-hero__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ananda-contact-hero__badge-icon svg,
.ananda-contact-hero__card-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

.ananda-contact-hero__title {
    margin: 0 0 26px;
    max-width: 690px;
    color: #071d4c;
    font-size: clamp(36px, 3.2vw, 52px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ananda-contact-hero__description {
    max-width: 640px;
    color: #273449;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
}

.ananda-contact-hero__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
    max-width: 100%;
}

.ananda-contact-hero__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-width: 0;
    min-height: 172px;
    padding: 24px 12px 22px;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e7ebee;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

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

.ananda-contact-hero__card-icon {
    margin-bottom: 16px;
    color: #2f833b;
    font-size: 32px;
}

.ananda-contact-hero__card-title {
    display: block;
    margin: 0 0 12px;
    color: #101828;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
}

.ananda-contact-hero__card-value {
    display: block;
    max-width: 100%;
    color: #2f833b;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ananda-contact-hero__image-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 620px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    align-self: stretch;
}

.ananda-contact-hero__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

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

    .ananda-contact-hero__grid {
        grid-template-columns: 1fr !important;
    }

    .ananda-contact-hero--image-text .ananda-contact-hero__grid {
        direction: ltr;
    }

    .ananda-contact-hero__panel {
        background: transparent;
    }

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

    .ananda-contact-hero__image-wrap {
        height: 460px;
    }
}

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

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

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

    .ananda-contact-hero__badge {
        margin-bottom: 26px;
        font-size: 16px;
    }

    .ananda-contact-hero__title {
        font-size: 31px;
        line-height: 1.22;
    }

    .ananda-contact-hero__description {
        font-size: 17px;
        line-height: 1.7;
    }

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

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

    .ananda-contact-hero__image-wrap {
        height: 340px;
    }
}
