 /* Reset default margins and paddings */
 body, h1, h2, ul, li, p {
    margin: 0;
    padding: 0;
  }

  body {
    font-family: Verdana, Tahoma, sans-serif;
    font-size: 0.875em;
    line-height: 1.6;
    color: #333;
  }

  /* Header Banner */
  .header-banner {
    background-color: #002366;
    color: #fff;
    padding: 10px;
    text-align: center;
  }

    /* Navigation Menu */
  .nav-menu {
    background-color: #f8f8f8;
    position: relative;
  }
  
  /* Menu Toggle Button (Hamburger) */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }

  .nav-menu ul li {
    margin: 0 15px;
  }

  .nav-menu ul li a {
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
  }

  .nav-menu ul li a:hover {
    background-color: #ddd;
    border-radius: 4px;
  }

  /* Main Content */
  .main-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
  }

  /* Footer */
  .footer {
    background-color: #002366;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  /* Photo */

  .about-photo {
    float: left;            /* Moves image to the left so text wraps */
    margin: 0 16px 16px 0;  /* Space to the right and bottom of image */
    width: 180px;           /* Control the size here */
    height: auto;           /* Keeps the aspect ratio */
    border-radius: 4px;     /* Optional: slightly rounded corners */
  }


  /* Responsive adjustments for Mobile */
  @media (max-width: 600px) {
    .menu-toggle {
      display: block;
    }
    
    .nav-menu ul {
      flex-direction: column;
      display: none;
      margin-top: 40px; /* Space for the hamburger button */
    }
    
    .nav-menu.active ul {
      display: flex;
    }
    
    .nav-menu ul li {
      margin: 5px 0;
    }
  }