body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.resume-container-3 {
    display: flex;
    max-width: 900px;
    margin: 20px auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left-section-3 {
    background: #0056a6;
    color: white;
    padding: 20px;
    width: 35%;
    box-sizing: border-box;
}

.left-section-3 h1,
.left-section-3 h2 {
    margin: 0;
}

.left-section-3 h1 {
    font-size: 26px;
}

.left-section-3 h2 {
    font-size: 20px;
    font-weight: 300;
}

.profile-3,
.contact-3,
.social-profiles-3 {
    margin-top: 30px;
}

.profile-3 p {
    font-size: 14px;
}

.contact-3 ul,
.social-profiles-3 ul {
    list-style: none;
    padding: 0;
}

.contact-3 ul li,
.social-profiles-3 ul li {
    font-size: 14px;
    margin-bottom: 8px;
}

.right-section-3 {
    padding: 20px;
    width: 65%;
    box-sizing: border-box;
}

.section-3 {
    margin-bottom: 20px;
}

.section-3 h3 {
    margin: 0 0 10px;
    border-bottom: 2px solid #0056a6;
    display: inline-block;
    padding-bottom: 5px;
    color: #0056a6;
}

.experience-item-3,
.education-item-3 {
    margin-bottom: 10px;
}

.skills-bar-3 {
    margin-bottom: 10px;
}

.skills-bar-3 .label {
    font-size: 14px;
    margin-bottom: 5px;
}

.skills-bar-3 .bar {
    background: #ddd;
    height: 10px;
    width: 100%;
    position: relative;
}

.skills-bar-3 .bar span {
    background: #0056a6;
    display: block;
    height: 10px;
}

.references-3 ul {
    list-style: none;
    padding: 0;
}

.references-3 ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Hover Effect for Skills */
.skills-bar-3 .bar:hover span {
    background: #003d78;
}