body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f4f6;
}

.resume-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.resume-header {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6b8a1f, #8ba632);
    color: white;
    padding: 30px;
}

.profile-photo {
    width: 100px;              /* a bit larger */
    height: 100px;
    border-radius: 50%;
    background: white;
    margin-right: 20px;
    overflow: hidden;          /* crops the image into a circle */
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* keeps your face centered, no squish */
    display: block;
}


.resume-body {
    display: flex;
}

.sidebar {
    width: 30%;
    padding: 20px;
    background: #f7f7f3;
}

.main-content {
    width: 70%;
    padding: 30px;
}

h2 {
    color: #6b8a1f;
}
