body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.cv-card {
    display: flex;
    width: 900px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.left-side {
    width: 35%;
    background-color: #2E4053;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.left-side .profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #fff;
}

.left-side h2 {
    margin-bottom: 15px;
    font-size: 24px;
}

.left-side p {
    margin: 5px 0;
    font-size: 14px;
}

.right-side {
    width: 65%;
    padding: 30px;
}

.right-side section {
    margin-bottom: 20px;
}

.right-side h3 {
    border-bottom: 2px solid #1F618D;
    padding-bottom: 5px;
    margin-bottom: 10px;
    color: #1F618D;
}

.right-side p, .right-side ul {
    font-size: 14px;
    line-height: 1.6;
}

.right-side ul {
    list-style-type: disc;
    padding-left: 20px;
}
