body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    background: #f9f9f9; /* Light background for a clean, modern feel */
    color: #333; /* Dark text for readability */
    margin: 0;
    padding: 0;
}

header {
    background: #001A6E; /* Deep blue header background */
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

.bio-main {
    padding: 20px;
    max-width: 800px;
    text-align: center;
    background: white;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    border-radius: 8px;
}

.resume-main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    border-radius: 8px;
}

.resume-header {
    text-align: center;
    padding: 20px 0;
}

.resume-header h2 {
    margin: 10px 0;
}

.resume-container {
    text-align: left;
}

section {
    margin-bottom: 20px;
}

section h2 {
    color: #007BFF; /* Blue for section headings */
    border-bottom: 2px solid #007BFF; /* Blue underline for section emphasis */
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for the profile image */
}

ul {
    list-style: none; 
    padding: 0;
}

ul li {
    margin: 10px 0;
    font-size: 1.1rem;
}

ul li p {
    margin: 5px 0;
}

footer {
    text-align: center;
    background: #074799; /* Dark blue footer background */
    color: white;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
