/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 20px;
}

/* Container Styling */
.container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 15px;  /* Reduced padding */
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.intro h1 {
    font-size: 28px;
    color: #222;
    font-weight: normal; /* Removes bold styling */
    margin-bottom: 5px; /* Reduced space */
}
.intro p {
    font-size: 14px; /* Slightly smaller font */
    margin: 3px 0; /* Reduced space */
}

/* Email Link Styling */
.intro a {
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
    font-weight: normal; /* Removes bold styling */
}

.profile-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Social Links */
.social-links {
    margin-top: 5px; /* Reduced space */
}
.social-links a {
    font-size: 14px;
    color: #0073e6;
    text-decoration: none;
    margin: 0 8px;
    font-weight: normal; /* Removes bold styling */
}

/* Social Icons */
.social-links .icon {
    width: 20px; /* Small enough icons */
    height: 20px;
    vertical-align: middle;
}
.separator {
    margin: 0 8px;
    font-size: 14px;
    color: #333;
}

/* Sections Styling */
.about, .research {
    text-align: center;
    margin-top: 10px; /* Reduced space between sections */
    padding: 5px;
}
.about h2, .research h2 {
    color: #222;
    font-size: 18px; /* Slightly smaller heading */
    font-weight: normal; /* Removes bold styling */
    margin-bottom: 8px; /* Reduced space under titles */
}

/* Research List - Left Align & Smaller Font */
.research ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 5px;
    text-align: left;
    display: inline-block;
}
.research li {
    padding: 2px 0;
    font-size: 14px; /* Matches bio font size */
}
