/* General Body Style */
  body {
    background-color: #121212;
    color: #f5f5f5;
    font-family: 'Segoe UI', 'Open Sans', sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
  }

  @media (max-width: 600px) {
    body {
      padding: 0 15px;
    }
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.9em;
    color: #888;
    border-top: 1px solid #ccc;
  }

  /* Links */
  a {
    color: #66ccff;
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
  }

  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* full viewport width */
    background: #1f1f1f;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  .navbar a {
    color: white;
    margin: 0 15px;
    font-weight: bold;
    font-size: 16px;
  }

  .navbar a:hover {
    color: #66ccff;
    text-decoration:none;
  }

  /* Section Spacing */
  section {
    margin: 40px 0;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  /* Unordered Lists */
  ul {
    list-style-type: square;
    padding-left: 20px;
    line-height: 1.6;
  }

  li {
    margin-bottom: 8px;
  }

  /* About Me Section */
  .about-professional {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
  }

  .about-photo img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
  }

  .about-details {
    max-width: 600px;
  }

  .about-details h2 {
    margin-bottom: 8px;
    font-size: 26px;
    color: #ffffff;
  }

  .about-details h4 {
    margin-top: 0;
    color: #cccccc;
    font-weight: normal;
  }

  .about-details p {
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Responsive Design for About Me Section*/
  @media (max-width: 600px) {
    .about-professional {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .about-details {
      max-width: 100%;
    }
  }

  /* Background Section */
  .background p {
    line-height: 1.6;
    color: #dddddd;
  }

  /* Yearbook Quote Block */
  .yearbook-quote blockquote {
    font-style: italic;
    color: #777;
    margin: 20px auto;
    padding: 10px 20px;
    border-left: 4px solid #ccc;
    max-width: 600px;
  }

  /* Figure & Caption Styling */
  figure {
    text-align: center;
    margin: 20px auto;
  }

  figure img {
    display: block;
    margin: 0 auto;
  }

  figcaption {
    font-size: 0.7em;
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: 5px;
  }

  /* Custom List Bullets */
  .custom-list {
    list-style: none;
    padding-left: 0;
  }

  .custom-list li::before {
    content: "•";
    margin-right: 10px;
    color: #ffffff;
  }

  .custom-list li.circle::before {
    content: "•";
    color: #ffffff;
  }

  .custom-list li.square::before {
    content: "▪";
    color: #ffffff;
  }

  .custom-list li.disc::before {
    content: "○";
    color: #ffffff;
  }

  .custom-list li.dash::before {
    content: "–";
    color: #ffffff;
  }

  .custom-list li.none::before {
    content: "";
    margin-right: 0;
    color: #ffffff;
  }