body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 32px;
    margin: 20px 0 10px;
}

header nav {
    font-size: 16px;
}

header nav a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 10px;
}

header nav a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.bio {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-img {
    width: 200px;
    height: 250px;
    border-radius: 5px;
    object-fit: cover;
}

.bio-text {
    flex: 1;
}

.bio-text p {
    margin-bottom: 15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    font-weight: bold;
}

.news {
    list-style: none;
    padding: 0;
}

.news li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.news li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/* Publications */
.publication-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pub-img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.pub-content h3 {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: normal;
}

.pub-content .authors {
    margin: 5px 0;
    font-size: 14px;
}

.pub-content .venue {
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.pub-content .links a {
    margin-right: 10px;
    font-size: 14px;
}

/* Projects */
.project-item {
    margin-bottom: 25px;
}

.project-item h3 {
    font-size: 18px;
    margin: 0 0 5px;
}

.project-item p {
    margin: 5px 0;
}

.project-item .links a {
    margin-right: 10px;
    font-size: 14px;
}

/* Looking for Opportunities Section */
.opportunity-box {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

.opportunity-box p {
    margin-bottom: 15px;
}

.research-interests {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.research-interests li {
    margin-bottom: 8px;
}

.contact-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.contact-links a {
    margin-right: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    .bio {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-img {
        margin: 0 auto;
    }
    
    .publication-item {
        flex-direction: column;
    }
    
    header nav a {
        display: inline-block;
        margin: 5px;
    }
}