/* Base styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #fff; /* White background */
    color: #333; /* Dark grey text for readability */
}

/* Header styles */
header {
    background: #fff; /* White background */
    color: #333;
    border-bottom: 1px solid #d32f2f; /* Red accent color for the bottom border */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
}

header h1 {
    color: #d32f2f; /* Red accent color for name */
    margin: 0;
    font-size: 2em; /* Larger font size for the name/title */
}

/* Navigation styles */
nav ul {
    padding: 0;
    list-style: none;
    display: flex; /* Flex display for horizontal alignment */
    margin: 0; /* Remove default margin */
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #d32f2f; /* Red accent color for links */
    font-weight: bold;
}

nav ul li a:hover,
nav ul li a:focus {
    color: #b71c1c; /* A darker red for hover/focus states */
}

/* Responsive styles */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 5px 0;
    }

    header h1 {
        margin-bottom: 10px;
    }
}

/* The rest of your CSS content goes here */


/* Base styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #fff; /* White background */
    color: #333; /* Dark grey text for readability */
}

/* Header styles */
header {
    background: #fff; /* White background */
    color: #333;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #d32f2f; /* Red accent color for the bottom border */
}

header h1 {
    color: #d32f2f; /* Red accent color for name */
    margin: 0;
}

/* Navigation styles */
nav {
    text-align: center;
}

nav ul {
    padding: 0;
    list-style: none;
    display: inline-block; /* Center the nav in the header */
    margin: 0; /* Remove default margin */
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #d32f2f; /* Red accent color for links */
    font-weight: bold;
}

nav ul li a:hover,
nav ul li a:focus {
    color: #b71c1c; /* A darker red for hover/focus states */
}

/* Section styles */
main > section {
    padding: 40px 10%;
}

section h2 {
    color: #d32f2f; /* Red accent color for headings */
}

/* Profile picture styles */
.profile-pic {
    max-width: 150px;
    margin: 20px 0;
    border-radius: 50%; /* Circular profile picture */
    border: 3px solid #d32f2f; /* Red accent border */
}

/* Publications list styles */
section#publications ul {
    padding-left: 20px; /* Indent publication list */
}

section#publications li {
    margin-bottom: 10px; /* Space out publications */
}

/* Contact section styles */
section#contact p {
    font-weight: bold;
    color: #555; /* Slightly lighter text for less emphasis */
}

/* Footer styles */
footer {
    background: #f7f7f7; /* Very light grey background for footer */
    color: #333;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    header, main > section {
        padding: 20px;
    }
    
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
