/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.header-left {
    flex: 1;
}

.profile-img {
    width: 150px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3498db;
}

.header-right {
    flex: 3;
    text-align: left;
    padding-left: 20px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    color: #333;
}

header h2 {
    font-size: 1.5em;
    margin: 5px 0;
    color: #666;
}

.contact-info {
    font-size: 0.9em;
    color: #666;
}

.contact-info span {
    font-weight: bold;
    color: #333;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

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

section h3 {
    font-size: 1.5em;
    color: #3498db;
    margin-bottom: 10px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

.job, .education-item {
    margin-bottom: 15px;
}

.job h4, .education-item h4 {
    font-size: 1.2em;
    margin: 0;
    color: #333;
}

.company, .school {
    font-style: italic;
    color: #666;
    margin: 5px 0;
}

.dates {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.details {
    font-size: 0.9em;
    color: #555;
}

ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}

ul.skills-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

ul.skills-list li {
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 20px;
    font-size: 0.9em;
}

ul.research-list, ul.teaching-list, ul.achievements-list, ul.publications-list {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
    color: #555;
}

/* Horizontal Rule */
hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}
