/* Clean Academic Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    line-height: 1.6;
    color: #adbac7;
    background-color: #22272e;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #22272e;
}

/* Header */
.header {
    margin-bottom: 40px;
    border-bottom: 2px solid #373e47;
    padding-bottom: 20px;
}

.header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #cdd9e5;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.position {
    font-size: 18px;
    line-height: 1.4;
}

.contact-details {
    text-align: right;
    font-size: 14px;
    line-height: 1.8;
}

.contact-details a {
    color: #539bf5;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
    color: #6cb6ff;
}

/* Section Styles */
section {
    margin-bottom: 35px;
}

h2 {
    font-size: 22px;
    font-weight: bold;
    color: #cdd9e5;
    margin-bottom: 15px;
    border-bottom: 1px solid #373e47;
    padding-bottom: 5px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Lists */
ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

.interests-list li {
    margin-bottom: 6px;
}

/* Current Work */
.work-highlights {
    margin-top: 15px;
    padding: 15px;
    background-color: #2d333b;
    border-left: 4px solid #539bf5;
}

.work-highlights ul {
    margin-top: 10px;
    margin-bottom: 0;
}

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

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

.publication strong {
    color: #cdd9e5;
    font-size: 16px;
}

.publication em {
    color: #768390;
    font-style: italic;
}

.pub-note {
    color: #636c76;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}


/* Links */
a {
    color: #539bf5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #6cb6ff;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #373e47;
    text-align: center;
    color: #636c76;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 28px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-details {
        text-align: left;
    }
    
    .position {
        font-size: 16px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    body {
        font-size: 15px;
    }
    
    .contact-details {
        font-size: 13px;
    }
}