  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
  }


/* NAVBAR */
  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(8px);
  }

  .nav-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* LOGO */
  .logo img {
    max-width: 125px;
    width: 100%;
  }

  /* NAV LINKS */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
  }

  .nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #5ac8fa;
  }

  /* Separators */
  .nav-links a:not(:last-child)::after {
    content: "|";
    color: rgba(0,0,0,0.2);
    margin-left: 25px;
    pointer-events: none;
  }

  /* Underline hover effect */
  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #5ac8fa;
    transition: width 0.3s ease;
  }

  .nav-links a:hover::before {
    width: 100%;
  }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #000;
    border-radius: 3px;
    transition: all 0.4s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* MOBILE MENU */
  @media (max-width: 900px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      background: rgba(255, 255, 255, 0.96);
      height: 100vh;
      width: 250px;
      flex-direction: column;
      align-items: flex-start;
      padding: 100px 30px;
      gap: 25px;
      transition: right 0.4s ease;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
      .logo img {
    max-width: 130px;
    width: 100%;
  }

    .nav-links.active {
      right: 0;
    }

    .nav-links a {
      font-size: 18px;
      color: #000;
    }

    .nav-links a::after {
      content: none;
    }

    .hamburger {
      display: flex;
    }
  }

