.support_wrapper_3_main {
    width: 100%;
    background-color: var(--primary-background-color);
    padding: 1rem;

}

.support_wrapper_3_child {
    background-color: #054FB3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    padding: 5rem 2rem;
    margin: auto;
    border-radius: 20px;
}


.support_wrapper_3_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.support_wrapper_3_left .heading {
    font-size: 26px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}

.support_wrapper_3_left .paragraph {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.support_wrapper_3_left .heading,
.support_wrapper_3_left .paragraph {
    color: var(--secondary-color);
}

.support_wrapper_3_right {
    width: 100%;
    display: flex;
    justify-content: center;
}

.support_wrapper_3_center {
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: space-around;
}

.support_wrapper_3_center .contact-form_form-group {
    width: 80%;
    height: 50px;
}

.support_wrapper_3_center .contact-form_form-group input {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    box-shadow: 0px 8px 4px 0px #00000075;

}

.support_wrapper_3_center .contact-form_form-group input {
    padding-left: 20px;
}

.support_wrapper_3_center .contact-form_form-group input::placeholder {
    color: #aaa;
}


.support_wrapper_3_center .center-button-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFC82D;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 8px 4px 0px #00000075;
    cursor: pointer;
}


.support_wrapper_3_center .center-button-icon i {
    font-size: 18px;
    color: var(--secondary-color, #333);
    margin: 0;
}

/* Tablet View (Max Width 768px) */
@media (max-width: 768px) {
    .support_wrapper_3_main {
        padding: 1rem;
    }

    .support_wrapper_3_child {
        grid-template-columns: repeat(1, 1fr);
        padding: 3rem 1rem;
    }

    .support_wrapper_3_center .contact-form_form-group {
        width: 80%;
    }

    .support_wrapper_3_center .center-button-icon {
        width: 45px;
        height: 45px;
    }

    .support_wrapper_3_center .center-button-icon i {
        font-size: 16px;
    }
}

/* Mobile View (Max Width 576px) */
@media (max-width: 576px) {
    .support_wrapper_3_child {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .support_wrapper_3_center .center-button-icon {
        width: 40px;
        height: 40px;
    }

    .support_wrapper_3_center .center-button-icon i {
        font-size: 14px;
    }
}