body {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
    background-color: #fff;
}

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

/* Header */
.header {
    margin-bottom: 30px;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-info {
    vertical-align: top;
    padding-right: 20px;
}

.profile-img-cell {
    vertical-align: top;
    text-align: right;
    width: 200px;
}

.profile-img {
    width: 200px;
    height: 200px;
    /* border-radius: 8px; */
    object-fit: cover;
}

.profile-info h1 {
    font-size: 38px;
    font-weight: normal;
    margin: 0 0 10px 0;
    color: #000;
}

.email {
    font-family: "Courier New", monospace;
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #000;
}

.position {
    margin: 0 0 10px 0;
    color: #000;
}

.position a {
    color: #233ebc;
    text-decoration: none;
}

.position a:hover {
    color: hsl(25, 78%, 51%);
    text-decoration: underline;
}

.links a {
    color: #233ebc;
    text-decoration: none;
}

.links a:hover {
    color: hsl(25, 78%, 51%);
    text-decoration: underline;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 15px 0;
    color: #db6809;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.section p {
    margin: 0 0 15px 0;
}

.section a {
    color: #233ebc;
    text-decoration: none;
}

.section a:hover {
    color: #e37222;
    text-decoration: underline;
}

/* News */
.news {
    margin-top: 15px;
}

.news-item {
    margin-bottom: 12px;
    padding-left: 0;
}

.news-item strong {
    color: #000;
    font-weight: normal;
}

.news-toggle {
    margin-top: 15px;
    text-align: center;
}

.news-toggle button {
    background: none;
    border: 1px solid #233ebc;
    color: #233ebc;
    padding: 8px 16px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.news-toggle button:hover {
    background-color: #233ebc;
    color: white;
}

/* Publications */
.publication {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.publication:last-child {
    border-bottom: none;
}

.pub-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.pub-authors {
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
}

.pub-venue {
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
    font-weight: bold;
}

.pub-links {
    font-size: 14px;
}

.pub-links a {
    color: #233ebc;
    text-decoration: none;
}

.pub-links a:hover {
    color: hsl(25, 78%, 51%);
    text-decoration: underline;
}

.award {
    color: #c81f20;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    .profile-table {
        display: block;
    }
    
    .profile-table tr {
        display: block;
    }
    
    .profile-info {
        display: block;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .profile-img-cell {
        display: block;
        text-align: center;
        width: auto;
    }
    
    .profile-img {
        width: 150px;
        height: 150px;
    }
    
    .profile-info h1 {
        font-size: 24px;
    }
}
