body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}
.header {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    z-index: 1000;
}
.header a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}
.content {
    padding-top: 60px; /* Adjust for fixed header */
}
.section {
    padding: 40px;
}
.white-bg {
    background-color: #f4f4f4;
}
.gray-bg {
    background-color: #e2e2e2;
}
.home-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.profile-left {
    text-align: center;
    margin: 20px;
}
.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}
.social-icons a {
    margin: 0 10px;
    color: #333;
    font-size: 24px;
    text-decoration: none;
}
.bio-right {
    max-width: 1100px;
    margin: 20px;
}
.bio-right h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}
.bullet-list {
    list-style-type: none;
    padding: 0;
}
.bullet-list li:before {
    content: "•";
    color: #007bff;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
/* Styling for the education list items */
.bullet-list.education li {
    display: flex; /* Makes the list item a flex container */
    align-items: center; /* Vertically aligns the image and text */
    margin-bottom: 15px; /* Adds space between each education item */
}

.bullet-list.education li img {
    margin-right: 15px; /* Adds space to the right of the logo */
    flex-shrink: 0; /* Prevents the image from shrinking on smaller screens */
}

/* Removes the default bullet point from the list */
.bullet-list.education li:before {
    content: none;
}
.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
}
.paper-box {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.paper-links a {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
}
.patent-image {
    max-width: 1000px;
    height: auto;
    margin-top: 10px;
}
/* New CSS for the Interests/Education section */
.bio-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* New CSS for the Interests box */
.interests-box {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    margin-right: 20px;
    flex-basis: 50%; /* Adjust this value to control the width */
    display: flex;
    justify-content: space-around;
}

/* Rule to handle the columns within the interests box */
.interests-box > div {
    flex: 1; /* Makes each interest list take up an equal share of space */
    padding: 0 10px; /* Adjusts internal padding */
}

/* Media query to stack the interests and education on smaller screens */
@media (max-width: 768px) {
    .bio-container > div {
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* Additional rule to stack the interest lists within the box */
    .interests-box {
        flex-direction: column;
    }

    .interests-box > div {
        padding: 0;
    }
}

footer {
      text-align: center;       /* Centers the text */
      padding: 20px;
      background-color: #f2f2f2;
      font-size: 16px;
    }