    body {
      margin: 0;
	  font-family: "Aptos", "Segoe UI", "Inter", "Verdana", "Arial", sans-serif;
      background: #afbbbb;
      color: #2C3D73;
      text-align: center;
    }

    header {
      background: #001a82;
      color: white;
      padding: 1rem;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 1rem;
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: center;
    }
	
	section.bio {
      max-width: 800px;
      margin: 0 auto;
      padding: 1rem;
      background: white;
	  text-align: left;
    }

    nav {
      background: #c6d1ff;
      padding: 0.5rem;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #001a82;
      font-weight: 600;
    }

    nav a.active {
      background: #ffdc78;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
    }

    .hero {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .hero img {
      max-width: 150px;
      border-radius: 4px;
	  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.6);
    }

    .hero-banner img {
      max-width: 100%;
      height: auto;
    }

    h2, h3 {
      text-align: center;
      margin-top: 1rem;
    }

    p {
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    section.sched {
      margin-bottom: 0.8rem;
	  display: inline-block;
      text-align: left;
      margin: 0 auto;
	  padding-left: 1em;
      line-height: 2.2;
    }

   /* LINK STYLES */
    a {
      color: royalblue;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    }

    a:hover {
      color: crimson;
      text-decoration: underline;
      background-color: lightgray;
    }

    /* Section Divider */
    .divider {
      width: 80%;
      margin: 2rem auto;
      border: 0;
      border-top: 2px solid rgba(0,0,0,0.15);
    }

    /* Centered list container */
    .centered-list {
      display: inline-block;
      text-align: left;
      margin: 0 auto;
    }
	
	.center {
      text-align: center;
    }

    ul {
      margin: 0;
      padding-left: 1.5em;
      line-height: 1.6;
    }

    li {
      margin: 0.3rem 0;
      padding: 0;
    }

    footer {
      background: #001a82;
      color: white;
      padding: 0.75rem;
      margin-top: 2rem;
      font-size: 0.8rem;
    }

    @media (max-width: 600px) {
      .hero {
        flex-direction: column;
		text-align: center;
      }
    }