body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 800px;
    max-width: 100%;
}
.left {
    background-color: #f0e2d8;
    padding: 20px;
    width: 30%;
    box-sizing: border-box;
}
.left img {
    width: 100%;
    border-radius: 50%;
}
.left .contact, .left .about, .left .education, .left .languages {
    margin-top: 20px;
}
.left h3 {
    margin-bottom: 10px;
}
.left p {
    margin: 5px 0;
}
.right {
    padding: 20px;
    width: 70%;
    box-sizing: border-box;
}
.right h1 {
    margin: 0;
}
.right .title {
    font-size: 20px;
    color: #b49475;
    margin-bottom: 20px;
}
.right .section {
    margin-top: 20px;
}
.right h3 {
    margin: 0 0 10px 0;
}
.right p {
    margin: 0 0 20px 0;
}
.language-skill {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.language-bar {
    height: 10px;
    background-color: #d3b3a3;
    border-radius: 5px;
    overflow: hidden;
    width: 70%;
}
.language-bar div {
    height: 100%;
    background-color: #b49475;
}

