* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Lato', 'Arial', sans-serif;
    }

    body {
      font-size: 16px;
      line-height: 1.6;
      padding-top: 70px; /* Reserve space for fixed navbar */
    }

    /* Navbar wrapper */
    .nav-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: black;
      z-index: 1000;
      height: 70px;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
    }

    .nav-wrapper.shrink {
      height: 45px;
      background-color: #000000dd;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(5px);
    }

    /* Inner container */
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Logo styling */
    .brand-logo {
      height: 50px;
      transition: height 0.3s ease;
    }

    .nav-wrapper.shrink .brand-logo {
      height: 30px;
    }

    /* Navigation links */
    .navbar ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-item a {
      color: white;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .nav-item a:hover {
      color: #ddd;
    }

    /* Mobile menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .bar {
      width: 25px;
      height: 3px;
      background-color: #fff;
      transition: all 0.3s ease-in-out;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #00395B;
        padding: 15px 0;
        text-align: center;
      }

      .nav-wrapper.shrink .navbar ul {
        top: 45px;
      }

      .navbar ul.mobile-nav {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
    }
