/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* Profile Section */
.profile {
    margin-bottom: 3rem;
}

.profile h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.position {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
}

.contact-info {
    color: #666;
    font-size: 1rem;
}

.contact-info p {
    margin: 0.25rem 0;
}

/* Content Section */
.content {
    line-height: 1.8;
}

.section {
    margin-bottom: 2.5rem;
}

.section h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Education Entry */
.entry {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.year {
    font-weight: 600;
    color: #666;
}

.description strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.description div {
    color: #666;
    font-size: 0.95rem;
}

/* Research Interests */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 0.5rem;
    color: #444;
    position: relative;
    padding-left: 1.5rem;
}

ul li:before {
    content: '•';
    color: #2c3e50;
    position: absolute;
    left: 0.5rem;
}

/* Projects */
.project {
    margin-bottom: 1.5rem;
}

.project h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.project p {
    color: #666;
    font-size: 0.95rem;
}

/* Publications */
.publication {
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .entry {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .year {
        color: #2c3e50;
        margin-bottom: 0.25rem;
    }

    .profile h1 {
        font-size: 2rem;
    }
}