body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.left-column {
    background-color: #d3d3d3;
    padding: 20px;
    width: 40%;
    box-sizing: border-box;
}

.right-column {
    padding: 20px;
    width: 60%;
    box-sizing: border-box;
}

.profile-pic img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 2px solid #77aeb8;
    object-fit: cover;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    
}

.name-title {
    text-align: center;
    margin-bottom: 20px;
}

.name-title h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
    color: #333;
}

.name-title p {
    margin: 5px 0 0;
    font-size: 1.2em;
    color: #ffffff;
    background-color: #77aeb8;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 700;
}

.contact, .about, .skills, .education, .experience {
    margin-bottom: 30px;
}

.contact h2, .about h2, .skills h2, .education h2, .experience h2 {
    color: #ffffff;
    background-color: #77aeb8;
    padding: 5px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
}

.contact p, .about p, .education p, .experience p {
    margin: 5px 0;
    color: #666;
}

.contact p strong, .education p strong, .experience p strong {
    display: block;
    margin-top: 10px;
}

.experience .job {
    margin-bottom: 15px;
}

.experience .job h3 {
    margin: 0;
    color: #444;
    font-size: 1.1em;
    font-weight: 700;
}

.experience .job ul {
    padding-left: 20px;
    color: #666;
    margin: 5px 0 0;
}

.skills ul {
    list-style-type: none;
    padding: 0;
}

.skills ul li {
    background-color: #77aeb8;
    padding: 5px 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
    }
    .left-column, .right-column {
        width: 100%;
        padding: 10px;
    }
    .profile-pic img {
        width: 200px;
        height: 200px;
    }
    .name-title h1 {
        font-size: 1.5em;
    }
    .name-title p {
        font-size: 1em;
    }
}