/* General Styles */
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

/* Navigation Bar */
.navbar {
    background: #333;
    padding: 10px 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Header Section */
.header {
    background: #fff;
    padding: 40px 0;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-text {
    flex: 2;
}

.header-text h1 {
    font-size: 2.5em;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.header-text p {
    font-size: 1.1em;
    color: #666;
}

.header-image {
    flex: 1;
    text-align: center;
}

.profile-image {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

/* Section */
.section {
    margin: 40px auto;
    padding: 0 20px;
    max-width: 800px;
}

.section h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #444;
}

/* News Section */
.news-list,
.publications-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.news-list li,
.publications-list li {
    margin: 10px 0;
    font-size: 1em;
    line-height: 1.4;
}

.news-list span,
.publications-list span {
    font-weight: bold;
    color: #888;
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
