/* Basic reset to remove default browser padding/margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
  }
  
  /* Header and Navigation */
  .site-header {
    background-color: #ffffff;
    border-bottom: 2px solid #eaeaea;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Make logo section flex so image and text sit side by side */
  .logo {
    display: flex;
    align-items: center;
  }

  .university-logo {
    width: 70px;
    height: 70px;
    object-fit: cover; /* Ensures image fills box without distortion */
    margin-right: 15px;
  }

  .site-header .logo h1 {
    margin-bottom: 0.2em;
    font-size: 1.6rem;
  }
  
  .site-header .logo p {
    font-size: 1rem;
    color: #666;
  }
  
  .site-nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
  }
  
  .site-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  .site-nav a:hover {
    text-decoration: underline;
  }
  
  /* Main Content Sections */
  .section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .section p {
    margin-bottom: 15px;
  }
  
  .section ul,
  .section ol {
    margin-left: 20px;
    margin-bottom: 20px;
  }

  .container {
    display: flex;
    align-items: flex-start;
  }

  .image {
    margin-right: 15px;
  }
  
  /* People Profiles */
  .person-profile {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .person-profile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .lab-photo {
    display: block;
    max-width: 300px;
    margin-top: 20px;
  }

  .skyline-photo {
    display: block;
    max-width: 100%;
    margin-top: 20px;
  }

  .bibliography li {
    text-indent: -40px; /* Negative indent for first line */
    padding-left: 40px; /* Indent remaining lines */
    margin-bottom: 10px; /* Space between entries */
}
  
  /* Footer */
  .site-footer {
    text-align: center;
    padding: 20px;
    border-top: 2px solid #eaeaea;
    background-color: #ffffff;
    color: #666;
  }
  