body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 20px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Profile */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.profile-info {
    flex: 1;
    padding-right: 30px;
}

.profile-info h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.2em;
    color: #222;
}

.job-title {
    font-size: 1.2em;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.affiliation {
    margin-top: 0;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-info p {
    margin: 5px 0;
}

.bio {
    margin-top: 20px;
}

.profile-photo {
    width: 200px;
    flex-shrink: 0;
}

.photo-placeholder {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Sections */
section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5em;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Lists */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Publications & Projects */
.project-item {
    margin-bottom: 15px;
}

.project-item h3 {
    margin-bottom: 5px;
    font-size: 1.1em;
}

.paper-title {
    font-weight: bold;
    color: #222;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #888;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column-reverse;
    }
    
    .profile-photo {
        width: 150px;
        margin-bottom: 20px;
    }
    
    .profile-info {
        padding-right: 0;
    }
}
