body {
    font-family: Georgia, serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; /* Light beige background */
    color: #000; /* Black text for contrast */
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 1em;
    padding-left: 2em; /* Added left margin */
    padding-right: 2em; /* Added right margin */
}

.header {
    margin-bottom: 2em;
}

.header h1 {
    font-weight: bold; /* Bold font for the main header */
    font-size: 1.7em;
}

.header p {
    margin: 0.2em 0 0 0;
    font-size: 1em;
    color: #000; /* Black text for affiliation and email */
}

.header {
    margin-bottom: 2em;
    display: flex;
    justify-content: space-between; /* Adjusts spacing between text and photo */
    align-items: center; /* Vertically centers items */
}

.header-content {
    display: flex;
    align-items: center; /* Vertically centers items */
}

.header-text {
    flex: 1; /* Takes up remaining space */
}

.header-photo {
    position: relative;
}

.header-photo img {
    max-width: 200px; /* Adjust as needed */
    height: auto;
    position: relative;
    left: 100px; 
    top: 40px; /* Move the photo lower */
}

section {
    margin-bottom: 2em;
}

h2 {
    color: #000; /* Black color for section titles */
    border-bottom: 1px solid #8b4513; /* Brown underline */
    padding-bottom: 0.5em;
}

ul {
    list-style-type: none; /* Remove bullet points */
    padding-left: 0;
}

li {
    margin: 0.5em 0;
    padding-left: 1em;
    position: relative;
}

li:before {
    content: '•'; /* Bullet point */
    position: absolute;
    left: 0;
    color: #8b4513; /* Brown bullet point */
}
