.container-for-contact-us-page {
    margin: 0 auto;
    max-width: 1140px;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #0d1536 !important;
}

.contact-us-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 10px;
    margin-bottom: 100px;
}

.contact-us-box div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0.5px solid rgb(216, 203, 203);
    padding: 40px 0px;
    border-radius: 12px;
    width: 30%;
    margin: 0 10px;
}

.contact-us-box div:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.custom-icon {
    color: #035ded;
    font-size: x-large;
    margin-right: 10px;
    padding-bottom: 1rem;
}

.contact-us-box div h5 {
    margin: 10px 0 5px 0;
    font-weight: 600;
}

.contact-us-box div p {
    margin: 0 0;
    color: #6c757d !important;
}

.title-on-contact-page {
    text-align: center;
}

.title-on-contact-page-h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.title-on-contact-page p {
    margin-top: 0;
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.description-container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 40px;
    gap: 20px;
}

.description-in-support {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-in-support h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-top: 0;
}

.description-in-support-div {
    border: 0.5px solid rgb(216, 203, 203);
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 16px;
    border-radius: 4px;
}

.description-in-support-div:hover {
    background-color: rgb(241, 237, 237);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.icon-in-description {
    background-color: #dff5ea;
    padding: 12px;
    font-size: x-large;
    border-radius: 4px;
    color: #035ded;
}

.description-in-support-div-h5 {
    font-weight: 600;
    color: #0d1536;
    margin-bottom: 0;
}

.description-in-support-div-p {
    margin: 0.5rem 0;
    color: #6c757d;
    font-weight: 400;
}

.get-in-touch-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.get-in-touch-section h5 {
    font-weight: 600;
    color: #0d1536;
    margin-bottom: 0.75rem;
}

.get-in-touch-section p {
    margin: 0.5rem 0;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.2;
}

.divider {
    border-bottom: 0.5px solid rgb(216, 203, 203);
    width: 100%;
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .contact-us-box {
        flex-direction: column;
        align-items: center;
    }

    .contact-us-box div {
        width: 80%;
        margin: 10px 0;
    }

    .description-container {
        flex-direction: column;
        padding: 20px;
    }

    .description-in-support {
        width: 100%;
    }

    .get-in-touch-section {
        width: 100%;
    }
}
