*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",sans-serif;
}

body{

    background:#eef2f7;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:50px;
}

.container{

    width:1100px;

    max-width:100%;
}

.profile-card{

    display:grid;

    grid-template-columns:350px 1fr;

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.photo{

    background:#143d73;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:40px;
}

.photo img{

    width:240px;

    height:240px;

    border-radius:50%;

    object-fit:cover;

    border:8px solid white;

    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.label{

    margin-top:30px;

    color:white;

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;
}

.content{

    padding:60px;
}

.small-title{

    color:#1f5ea8;

    font-size:13px;

    letter-spacing:4px;
}

h1{

    margin:18px 0 40px;

    font-size:42px;

    color:#143d73;
}

.grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;
}

.info{

    padding:20px;

    background:#f8fafc;

    border-left:4px solid #1f5ea8;

    border-radius:10px;
}

.info h3{

    color:#143d73;

    margin-bottom:8px;

    font-size:15px;
}

.info p{

    color:#555;

    line-height:1.8;
}

.research{

    margin-top:40px;

    padding:30px;

    background:#143d73;

    color:white;

    border-radius:15px;
}

.research h2{

    margin-bottom:15px;

    font-size:24px;
}

.research p{

    line-height:1.9;

    margin-bottom:12px;
}

@media(max-width:900px){

    .profile-card{

        grid-template-columns:1fr;
    }

    .content{

        padding:35px;
    }

    .grid{

        grid-template-columns:1fr;
    }

    h1{

        font-size:34px;
    }

    .photo img{

        width:190px;

        height:190px;
    }

}