
body {
    background-color: #fff;
    color: #000;
    font-family: "Geist Sans", sans-serif;
}

.main-container {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
}

.left-container {
    width: 30%;
    padding: 40px 0px 40px 40px;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

.profile-picture {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: inset 0 3px 6px rgba(255, 255, 255, 0.7), 0 6px 10px rgba(0, 0, 0, 0.15);
}

.profile-name {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

.school-name {
    font-size: 20px;
    color: #2b2b2b;
    margin-bottom: 50px;
    font-weight: 500;
}

.contact-info a {
    display: flex;
    align-items: center;
    color: #363636;
    text-decoration: none;
    margin-bottom: 10px;
}

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

.contact-info a i {
    margin-right: 10px;
}

.right-container {
    width: 70%;
    padding: 20px 40px 40px 40px;
}

.right-container > div {
    margin-bottom: 40px;
}

.section-title {
    font-family: "Geist Sans", sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 0px;
    border-bottom: 1px dashed #ddd;
    border-image: repeating-linear-gradient(to right, #4f4f4f, #ddd 10px, transparent 10px, transparent 20px) 1;
    padding-bottom: 10px;
}

.section-content {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

.section-content p {
    text-align: justify;
    font-weight: 350;
    color: #2e2e2e;
}

.job-title, .project-title, .publication-title {
    font-family: "Geist Sans", sans-serif;
    font-size: 23px;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 0;
    color: #000;
}

.job-details, .project-details, .publication-details {
    margin-bottom: 20px;
    margin-top: 5px;
    /* margin-left: 20px; */
}

.publication-link, .project-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.publication-link:hover, .project-details a:hover {
    color: #000;
}