body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.container {
    display: flex;
    max-width: 1000px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.left-column {
    width: 35%;
    background: linear-gradient(to bottom right, #3949AB, #1A237E);
    color: white;
    padding: 20px;
}
.right-column {
    width: 65%;
    padding: 20px;
}
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #C5CAE9;
    margin: 0 auto 20px;
    overflow: hidden;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h1, h2 {
    margin: 0 0 10px 0;
}
h2 {
    color: #FFC107;
    border: 2px solid #FFC107;
    border-radius: 20px;
    padding: 5px 15px;
    display: inline-block;
    font-size: 0.9em;
    margin-top: 20px;
}
.section {
    margin-bottom: 20px;
}
.skill-bar {
    background-color: rgba(255, 255, 255, 0.2);
    height: 10px;
    margin-top: 5px;
    border-radius: 5px;
}
.skill-level {
    background-color: #FFC107;
    height: 100%;
    border-radius: 5px;
}
.language-circles {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.language-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFC107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
}
.language-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFC107;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.right-column h2 {
    color: #3949AB;
    border: none;
    border-bottom: 2px solid #3949AB;
    border-radius: 0;
    padding-bottom: 5px;
    display: block;
}