* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    background: #f4f4f4;
    padding: 20px;
}

.resume-container {
    display: flex;
    width: 800px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.sidebar {
    width: 30%;
    background: #0033cc;
    color: white;
    padding: 20px;
    text-align: center;
}

.profile-pic {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.name {
    font-size: 24px;
    font-weight: bold;
}

.title {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 14px;
    margin: 5px 0;
}

.content {
    width: 70%;
    padding: 20px;
}

h2 {
    color: #0033cc;
    border-bottom: 2px solid #0033cc;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.job, .education p {
    margin-bottom: 10px;
}

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

.skills ul li {
    margin-bottom: 5px;
}
