body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}


header {
    background-color: #005A9C;
    color: white;
    padding: 20px 40px;
}

header h1 {
    margin: 0;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

section {
    padding: 20px 40px;
}

section h2 {
    color: #005A9C;
}

#contact button {
    background-color: #008CBA;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

#publications {
    padding: 20px 40px;
}

.publication-list {
    list-style-type: none;
    padding: 0;
}

.publication-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.publication-title {
    font-weight: bold;
}

.cite-this {
    font-style: italic;
    margin-top: 10px;
}

.bibtex-entry {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 10px;
    white-space: pre-wrap;
    overflow-x: auto;
    font-family: monospace;
}
