{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.container {
    background-color: #fff;
    width: 800px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.profile-picture img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-info {
    flex-grow: 1;
}

.contact-info h1 {
    font-size: 24px;
    color: #333;
}

.contact-info h2 {
    font-size: 18px;
    color: #777;
}

.contact-info p {
    font-size: 14px;
    color: #555;
}

.content {
    display: flex;
}

.left-column, .right-column {
    width: 50%;
    padding: 10px;
}

.section {
    margin-bottom: 20px;
}

.section h3 {
    font-size: 18px;
    color: #007bff;
    margin-bottom: 10px;
}

.section p, .section ul {
    font-size: 14px;
    color: #555;
}

.section ul {
    list-style-type: none;
    padding-left: 0;
}

.section ul li {
    margin-bottom: 5px;
}

.job h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.job p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
