body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #0055a4;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    background: white;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #0055a4;
}

/* Publications */
.publication {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.publication img {
    width: 150px;
    height: 150px;
    margin-right: 15px;
    border-radius: 5px;
}

/* Highlight your name */
.highlight {
    font-weight: bold;
    color: #ff6600;
}

/* Research */
.research {
    background: #e8f0fe;
    padding: 10px;
    margin: 10px 0;
    border-left: 5px solid #0055a4;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #0055a4;
    color: white;
    margin-top: 20px;
}
