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

a {
    color: rgb(108, 5, 5);
}

.cv-container {
    width: 900px;
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.sidebar {
    background: #0056b3;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.sidebar img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 10px;
}

.main-content {
    padding: 10px;
}

h1 {
    text-align: center;
    color: white;
}

h2 {
    color: #041c35;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
}

.section {
    margin-bottom: 15px;
    text-align: justify;
}
