.contactUs section {
    padding: 50px 0px;
}
.contactUs .color-blue-txt{
    color: #005E9E;

}
.contactUs .contactUsNriSection{
    scroll-margin-top: 50px;
}

.contactUs h2 {
    color: #233253;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    margin-bottom: 26px;
}

.contactUs .subHeading {
    color: #233253;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 18px;
}

.contactUs .contactUsWrapper {
    display: flex;
    gap: 30px;
}

.contactUs .contactUsWrapper.btnMarginBottom {
    margin-bottom: 35px;
}

.contactUs .contactUsImage {
    width: 15%;
    flex: none;
}

.contactUs .contactUsImage > img {
    width: 100%;
    height: auto;
}

.contactUs .pointsList {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    row-gap: 30px;
}

.contactUs .pointsList .pointCard {
    max-width: 350px;
    width: 100%;
    flex: none;
    display: flex;
    gap: 18px;
}

.contactUs .pointsList .pointCard .pointCard__img {
    width: 30px;
    flex: none;
}

.contactUs .pointsList .pointCard .pointCard__img img {
    width: 100%;
    height: auto;
}

.contactUs .pointsList .pointCard .pointCard__content {
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contactUs .blue-text {
    color: #005E9E;
}

.contactUs .red-text {
    color: #ED1C24;
}

.contactUs .pointsList .pointCard .pointCard__content .pointCard__description {
    word-break: break-word;
}

.contactUs .pointsList .pointCard .pointCard__content .pointCard__description p,
.contactUs .pointsList .pointCard .pointCard__content .pointCard__description a {
    color: #005E9E;
}

.contactUs .pointsList .pointCard .pointCard__content .pointCard__description a:hover {
    color: #005E9E;
}

.contactUs .pointsList .pointCard__content .pointCard__button a {
    display: block;
    width: max-content;
    background-color: #ED1C24;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
}

.contactUs .pointsList .pointCard__content .pointCard__button a:hover{
    box-shadow: 0 8px 12px rgba(237, 28, 36, 0.2);
    background: #ff3038;
}

.contactUs .pointsList .pointCard__content .pointCard__qrImg {
    width: 80px;
}

.contactUs .pointsList .pointCard__content .pointCard__qrImg img {
    width: 100%;
    height: auto;
}

.contactUs .grievanceButton {
    display: flex;
    justify-content: center;
}

.contactUs .grievanceButton a {
    background-color: #ED1C24;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    padding: 8px 13px;
    border-radius: 5px;
    cursor: pointer;
}

.contactUs .grievanceButton a:hover{
    box-shadow: 0 8px 12px rgba(237, 28, 36, 0.2);
    background: #ff3038;
}

@media screen and (min-width: 768px) {
    .contactUs .desktop-only {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .contactUs section {
        padding: 20px 0px;
    }

    .contactUs h2 {
        font-size: 24px;
    }

    .contactUs .contactUsImage {
        display: none;
    }
    
    .contactUs .pointsList {
        width: 100%;
        flex-direction: column;
    }

    .contactUs .pointsList .pointCard {
        max-width: 100%;
    }

    .contactUs .pointsList .pointCard__content .pointCard__qrImg {
        /* display: none; */
    }

    .contactUs .mobile-only {
        display: none !important;
    }
}