.my-referral-page-container {
    width: 100%;
    margin: 0 auto;
}

.my-referral-page-hero-section {
    width: 100%;
    padding: 0 0% 0% 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.my-referral-page-hero-text {
    text-align: left;
    color: #434343;
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    font-family: "Manrope", Sans-serif;

}

.my-referral-page-hero-text h2 {
    font-size: 52px;
    font-weight: 700;
}

.my-referral-page-hero-text p {
    font-family: "Manrope", Sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.my-referral-page-hero-image {
    text-align: left;
    color: #434343;
    border-radius: 10px;
}

.my-referral-page-referral-approach-content {
    width: 100%;
    background-size: cover;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.my-referral-page-referral-approach {
    display: flex;
    justify-content: center;
    color: #434343;
    font-size: 18px;
}

.my-referral-page-jobs-section {
    margin-top: 50px;
    color: #434343;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.my-referral-page-jobs-section .my-referral-page-box {
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.my-referral-page-number-1-heading {
    background-color: #34495E24;
    border-radius: 10px;
    width: 50px;
    display: flex;
    height: 50px;
    justify-content: center;
    font-size: 25px;
    color: #34495E;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.my-referral-page-number-2-heading {
    background-color: #F183432E;
    border-radius: 10px;
    width: 50px;
    display: flex;
    height: 50px;
    justify-content: center;
    font-size: 25px;
    color: #F18343;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.my-referral-page-number-3-heading {
    background-color: #2ECC7121;
    border-radius: 10px;
    width: 50px;
    display: flex;
    height: 50px;
    justify-content: center;
    font-size: 25px;
    color: #2ECC71;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.my-referral-page-referral-approach-content-topic {
    font-size: 16px;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

@media (max-width: 768px) {
    .my-referral-page-hero-section {
        flex-direction: column;
        padding: unset;
    }

    .my-referral-page-jobs-section {
        padding: 0 20px;
    }

    .my-referral-page-hero-text {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 36px;
    }

    .my-referral-page-hero-text h2 {
        font-size: 36px;
    }

    .my-referral-page-hero-image {
        width: 100%;
    }

    .my-referral-page-referral-approach-content {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }

    .my-referral-page-referral-approach-content p {
        gap: 10px 10px;
    }

    .my-referral-page-referral-approach-content-topic {
        flex-direction: row;
    }
}