.intro-section {
    display: flex;
    justify-content: center;
    align-items: center;    
    padding: 50px 20px;
    background-color: #ffffff;
}

.intro-content {   
    max-width: 1110px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    text-align: left;
    background-color: #fff;    
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 30px;
    object-fit: cover;
}

.profile-img2 {
    width: 230px;
    height: 150px;
    border-radius: 10%;
    margin-right: 10px;
    margin-left: 10px;
   

    object-fit: cover;
}


.intro-text h1 {
    margin-top: 0;
    font-size: 2em;
    color: #333;
}

.intro-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

.intro-text h2 {
    font-size: 1.5em;
    color: #007BFF;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
