body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #2c3e50; /* Dark blue header */
    color: white;
    padding: 20px 0;
}

.profile-container {
    display: flex; /* Use flexbox to arrange the image and text */
    align-items: center; /* Vertically center the items */
    justify-content: flex-start; /* Align items to the start (left) */
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px; /
}

.profile-info h1 {
    margin: 0;
    font-size: 24px;
}

.profile-info p {
    margin: 0;
    font-size: 18px;
}

main {
    margin-top: 20px;
}

h2, h3 {
    margin-bottom: 10px;
    margin-top: 0;
}

p, li {
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

.about, .experience, .education, .publications, .contact {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
