/* General styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Header styling */
header {
    background: #004488;
    color: white;
    padding: 40px 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* Navigation bar */
nav {
    text-align: center;
    background: #f4f4f4;
    padding: 15px 0;
}

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

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

nav ul li a {
    text-decoration: none;
    color: #004488;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 10px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #004488;
    color: white;
    border-radius: 5px;
}

/* Home section with two-column layout */
.home-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.home-left {
    flex: 4;
    text-align: center;
}

.home-right {
    flex: 6;
    padding-left: 40px;
    text-align: left;
}

/* Adjusting profile picture size */
.profile-large {
    width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #004488;
}


/* Sections */
section {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #004488;
    border-bottom: 2px solid #004488;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-size: 22px;
}

/* Research & publications */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

ul li:last-child {
    border-bottom: none;
}

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