.page-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; */
  position: relative;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 45px 0 0 0;
  position: relative;
}

/* Hamburger Menu - Hidden by default on desktop */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
  width: 48px;
  height: 48px;
  background-color: #00338d;
  border-bottom-right-radius: 24.44px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(1px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -6px);
}

.logo {
  width: 100px;
  height: 73px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 0;
  justify-content: space-between;
  align-items: center;
  width: 425px;
  height: 47px;
  background-color: #00338d;
  padding: 0 40px;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.vector-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 290px;
  z-index: 10;
}

.vector-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

.cta {
  height: 27px;
  background-color: #00338d;
  padding: 4px 38px;
  border-radius: 20px;
}
.cta-text {
  width: 88px;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  cursor: pointer;
  font-weight: Regular;
}

/* Tablet View (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

  .page-container {
    padding: 0 20px;
  }

  .header {
    padding: 35px 22px 0 22px;
  }
  
  .logo {
    width: 90px;
    height: 65px;
  }
  
  .nav {
    width: 338px;
    height: 47px;
    padding: 0 36px;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-link {
    font-size: 13px;
  }

  .vector-image {
    height: 165px;
  }
  
  .cta {
    height: 24px;
    padding: 3px 32px;
    border-radius: 18px;
  }
  
  .cta-text {
    width: 80px;
    font-size: 13px;
  }
}

/* Mobile View (below 768px) */
@media (min-width: 425px) and (max-width: 767px) {
  .header {
    padding: 20px 16px 0 16px;
    justify-content: space-between;
    align-items: center;
  }
  
  .hamburger-menu {
    display: flex;
    order: 1;
  }
  
  .logo {
    position: absolute;
    left: 38%;
    order: 2;
    width: 85px;
    height: 60px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .vector-image {
    height: 125px;
  }
  
  .cta {
    order: 3;
    width: 6.125rem;
    height: 2.25rem;
    padding: 0.5rem 0.796rem;
    border-radius: 13.68px;
    display: flex;
    font-weight: 400;
    align-items: center;
  }
  
  .cta-text {
    font-size: 0.72375rem;
    width: auto;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    /* background-color: #00338d; */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 20px 20px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    z-index: 999;
    border-radius: 0;
    transform: none; /* reset desktop centering */
  }

  .nav-link {
    color: #00338d;
  }
  
  .nav.active {
    left: 0;
    transform: none;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 424px) {
  .header {
    padding: 20px 6px 0 6px;
    justify-content: space-between;
    align-items: center;
  }
  
  .hamburger-menu {
    display: flex;
    order: 1;
  }
  
  .logo {
    position: absolute;
    left: 38%;
    order: 2;
    width: 85px;
    height: 60px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .vector-image {
    height: 110px;
  }
  
  .cta {
    order: 3;
    width: 6.125rem;
    height: 2.25rem;
    padding: 0.5rem 0.796rem;
    border-radius: 13.68px;
    display: flex;
    font-weight: 400;
    align-items: center;
  }
  
  .cta-text {
    font-size: 0.72375rem;
    width: auto;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 20px 20px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    z-index: 999;
    border-radius: 0;
    transform: none; /* reset desktop centering */
  }
  
  .nav.active {
    left: 0;
    transform: none;
  }
  
  .nav-link {
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    color: #00338d;
  }
}