  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  body {
      font-family: Roboto, sans-serif;
      margin: 0;
      padding: 0;
  }

  /* Navbar */
  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: clamp(10px, 2vw, 20px) clamp(10px, 2vw, 20px);
      backdrop-filter: blur(10px);
  }

  .navbar-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 32px);
      background: rgba(255, 255, 255, 0.95);
      border-radius: 19px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu {
      display: none;
      flex-direction: column;
      gap: 12px;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      padding: 20px;
      border-radius: 0 0 19px 19px;
      margin-top: -10px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
      display: flex;
  }

  @media (min-width: 768px) {
      .nav-menu {
          display: flex;
          flex-direction: row;
          position: static;
          background: transparent;
          padding: 0;
          margin: 0;
          gap: clamp(12px, 2vw, 24px);
          justify-content: center;
          box-shadow: none;
      }

      .hamburger {
          display: none !important;
      }
  }

  .nav-item {
      color: #15224D;
      font-size: clamp(14px, 2vw, 16px);
      font-weight: 500;
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 8px;
      transition: all 0.3s ease;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
  }

  .nav-item:hover,
  .nav-item.active {
      background: #15224D;
      color: white;
      transform: translateY(-2px);
  }

  /* Submenu styles */
  .nav-item-with-submenu {
      position: relative;
  }

  .submenu-indicator {
      font-size: 12px;
      transition: transform 0.3s ease;
  }

  .nav-item-with-submenu:hover .submenu-indicator,
  .nav-item-with-submenu.active .submenu-indicator {
      transform: rotate(180deg);
  }

  .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(255, 255, 255, 0.98);
      border-radius: 8px;
      padding: 12px 0;
      min-width: 200px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
      z-index: 1001;
  }

  .nav-item-with-submenu:hover .submenu,
  .nav-item-with-submenu.active .submenu {
      display: block;
  }

  .submenu-item {
      display: block;
      color: #15224D;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      padding: 10px 20px;
      transition: all 0.3s ease;
  }

  .submenu-item:hover,
  .submenu-item.active {
      background: #15224D;
      color: white;
  }

  /* Mobile submenu styles */
  @media (max-width: 767px) {
      .submenu {
          position: static;
          display: none;
          background: rgba(248, 248, 248, 0.95);
          margin-top: 8px;
          border-radius: 8px;
          padding: 8px 0;
      }

      .nav-item-with-submenu.active .submenu {
          display: block;
      }

      .submenu-item {
          padding: 8px 20px 8px 32px;
          font-size: 14px;
      }
  }

  .hamburger {
      display: flex;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      padding: 8px;
      transition: transform 0.3s;
  }

  .hamburger:hover {
      transform: scale(1.1);
  }

  .hamburger-line {
      width: 25px;
      height: 3px;
      background: #15224D;
      transition: all 0.3s;
      border-radius: 2px;
  }

  /* Responsive utilities */
  @media (max-width: 767px) {
      .navbar-inner {
          position: relative;
          justify-content: space-between;
      }
  }

  /* Content spacing for fixed navbar */
  .content-spacer {
      height: clamp(90px, 12vw, 110px);
  }

  .navbar-logo {
      display: none;
      /* Hidden by default */
      align-items: center;
      margin-left: auto;
      /* Pushes logo to the right */
  }

  .logo-img {
      height: clamp(32px, 4vw, 32px);
      /* Smaller size for mobile */
      width: auto;
      object-fit: contain;
  }

  /* Mobile view (max-width: 768px) */
  @media (max-width: 767px) {
      .navbar-inner {
          justify-content: space-between;
          /* Ensure hamburger and logo are on opposite sides */
      }

      .nav-menu {
          flex: 1;
          /* Allow menu to take available space when active */
      }

      .navbar-logo {
          display: flex;
          /* Show logo in mobile view */
          order: 2;
          /* Ensure logo stays on the right */
      }

      .hamburger {
          order: 1;
          /* Hamburger on the left */
      }
  }

  /* Larger screens (min-width: 769px) */
  @media (min-width: 768px) {
      .navbar-logo {
          display: none;
          /* Hide logo in tablet and desktop views */
      }

      .navbar-inner {
          justify-content: center;
          /* Restore original centering for menu */
      }
  }

  .navbar-text {
      display: none;
      /* Hidden by default */
      font-size: clamp(12px, 3vw, 14px);
      font-weight: 700;
      color: #15224D;
      text-align: center;
      flex-basis: 100%;
      /* Take full width for centering */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }