
.aboutus_container {
    width: 65%;
    margin: 0 auto;
    margin-top: 120px;
    text-align: justify;
}

.text_contain_1 {
    padding: 0 100px;
    padding-bottom: 50px;
}

.profile-card {
    display: flex;
    align-items: center;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    width: 65%;
    margin-bottom: 50px;
}

.profile-image img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.profile-content {
    padding: 20px;
    background-color: rgb(40, 79, 124);
    color: white;
    width: 100%;
    text-align: left;   
}

.profile-content h2 {
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: bold;
}

.profile-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
}

.profile-content p {
    font-size: 14px;
    line-height: 1.6;
}



/* Responsive adjustments */

@media screen and (max-width: 1118px) {
    .aboutus_container {
        width: 95%;
    }
    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 100%;
        height: auto;
    }

    .profile-content {
        padding: 15px;
    }

    .profile-content h2 {
        font-size: 20px;
    }

    .profile-content h3 {
        font-size: 16px;
    }

    .profile-content p {
        font-size: 13px;
    }
}


@media (max-width: 768px) {
    .aboutus_container {
        width: 95%;
    }
    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 100%;
        height: auto;
    }

    .profile-content {
        padding: 15px;
    }

    .profile-content h2 {
        font-size: 20px;
    }

    .profile-content h3 {
        font-size: 16px;
    }

    .profile-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    
    .aboutus_container {
        width: 98%;
    }
    .profile-content h2 {
        font-size: 18px;
    }

    .profile-content h3 {
        font-size: 14px;
    }

    .profile-content p {
        font-size: 12px;
    }

    .profile-content {
        padding: 10px;
    }
}

