    header {
      background-color: rgba(240, 230, 210, 0.95);
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 80px;
    }

    /* Base Styles */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: rgba(240, 230, 210, 0.95);
      padding: 10px 20px;
      color: white;
      width: 100%;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: 20px;
      margin-right: 10px;
    }

    .menu ul {
      margin-left: auto;
    }

    .menu li a {
      color: #05316d;
      text-decoration: none;
    }

    /* Hide menu toggle on desktop */
    .menu-toggle {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      color: #05316d;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .menu {
        display: none;
        flex-direction: column;
        width: 100%;
/*        background-color: #1a1a1a; */
        background-color: rgba(240, 230, 210, 0.95);
        position: absolute;
        top: 0px;
        left: 0;
        padding-bottom: 20px;
      }

      .menu.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }    