*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#e5e5e5;
    padding:30px;
}

.container{
    max-width:1000px;
    margin:auto;
    display:flex;
    background:white;
}

.left{
    width:35%;
    background:#2f8f9d;
    color:white;
    padding:20px;
}

.left img{
    width:180px;
    height:180px;
    border-radius:50%;
    display:block;
    margin:auto;
    margin-bottom:20px;
}

.left section{
    margin-top:25px;
}

.right{
    width:65%;
    padding:30px;
}

header{
    background:#1d4e89;
    color:white;
    padding:20px;
    margin-bottom:20px;
}

.right section{
    margin-bottom:20px;
}

h2{
    color:#1d4e89;
    margin-bottom:10px;
}

img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
}