* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 40px;
    object-fit: cover;
    border: 3px solid #eee;
}

.profile-info h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.profile-info p {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.links-section {
    background: white;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.links-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.links-list a {
    text-decoration: none;
    color: #3498db;
    font-size: 1.1em;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links-list a:hover {
    color: #2980b9;
}

.publications-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.publications-list {
    list-style: none;
}

.publication-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-title {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.publication-authors {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 5px;
}

.publication-journal {
    color: #3498db;
}

.publication-year {
    color: #95a5a6;
    font-size: 0.9em;
}

/* Publication Styling */
.publication-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.publication-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.publication-title a {
    color: inherit;
    text-decoration: none;
}

.publication-title a:hover {
    color: #2b6cb0;
    text-decoration: underline;
}

.publication-authors {
    color: #666;
    font-style: italic;
    margin-bottom: 0.3rem;
}

.publication-meta {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.publication-journal {
    font-weight: 500;
    color: #2b6cb0;
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        margin-right: 0;
        margin-bottom: 20px;
    }
}