  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
  }

  .container {
    max-width: 600px;
    margin: 100px auto 50px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #324058;
    color: white;
    padding: 5px 20px;
  }

.nav {
    list-style-type: none;
}

.nav li {
    display: inline;
    margin-left: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
}

  .logo-container {
      display: flex;
      align-items: center; /* Ensure vertical centering of logo and text */
      justify-content: flex-start; /* Align items to the start */
  }

  .logo-image {
    max-width: 90px;
    height: auto;
  }

  .logo-text {
      margin-left: 10px;
      font-size: 24px;
      color: #f4f4f4;
      align-self: center; /* This ensures the text aligns correctly if it's not aligning properly */
      vertical-align: 50%;
  }



  .content {
    margin: 20px 0;
  }

  .footer-banner {
    background-color: #324058;
    color: white;
    padding: 10px 20px;
    font-size: 0.8em;
  }

  a {
    color: #324058;
    text-decoration: none;
    font-weight: bold;
  }

  a:hover {
    text-decoration: underline;
  }