site-nav {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #000;
}

.nav-inner {
  max-width: 100%;         /* aligns with your content */
  margin: 0 auto;
  padding: 12px 20px 10px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;              /* control logo size */
  display: block;
}

/* Links container takes right 50% */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 40%;
  margin-left: auto;         /* push links to the right */
  padding-left: 70px;
   margin-top: 0;
  margin-bottom: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #4e5196;
  font-family: "Chakra","Arial",sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
}

.nav-links li a:hover {
  text-decoration: underline;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #4e5196;
}
.site-footer {
  width: 100%;
  background-color: #4e5196;
  color: #fff;
  padding: 20px 0;
}

.footer-inner {
  max-width: 100%;     /* align with banner/cards */
  margin: 0 auto;
  text-align: left;       /* left-align the text */
  font-family: "Chakra","Arial",sans-serif;
  color: white;
}
.footer-link {
  text-decoration: none;
  margin-left: 20px;
  font-family: "Chakra","Arial",sans-serif;
  color: white;
}

.footer-link:hover {
  text-decoration: underline;      /* hover effect */

ration: underline;
}

@media (max-width: 900px) {

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content:flex-start;
    display: none;
    padding: 20px 0;
    border-top: 1px solid #000;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-link la a {
  padding-left: 10px;
 }
  .nav-links.active {
    display: flex;
  }
}
