body {
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    margin: 0;
    padding: 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.resume {
    max-width: 700px;
    background: #fff;
    margin: 40px auto;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
header h1 {
    margin-top: 0;
    font-size: 2.4em;
}
header p {
    color: #555;
}
h2 {
    border-bottom: 2px solid #e3e3e3;
    padding-bottom: 3px;
    margin-bottom: 18px;
    color: #333;
}
ul {
    padding-left: 18px;
}
section {
    margin-bottom: 28px;
}