    .navbar {
      display: flex;
      align-items: center;
      background-color: #9cbad6;
      padding: 0 20px;
      position: relative;
      height: 130px;
    }

    .logo {
      color: white;
      font-size: 20px;
      font-weight: bold;
      padding: 14px 0;
      margin-right: auto;
    }

    .menu {
      display: flex;
    }

    .menu button {
      background: none;
      border: none;
      color: #00E;
      padding: 14px 20px;
      cursor: pointer;
      font-size: 1.5rem;
    }

    .menu button:hover,
    .menu button.active {
	background-color: #eee;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 1;
      right: 0;
      width: 40%;
      //background-color: #f9f9f9;
      background-color: white;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 10;
    }

    .dropdown.active {
      display: block;
    }

    .link-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .column {
      flex: 1;
      min-width: 200px;
    }

    .column a {
	display: block;
	font-size: 1.125rem;
      margin: 1rem 0;
      text-decoration: none;
    }

    .column a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .link-grid {
        flex-direction: column;
      }
    }
