body {
  font-family: "Nunito Sans", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.Rectangle-1 {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5px 10px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fffcfc;
  position: relative; /* Added relative positioning for child positioning */
}

.logo {
  flex: 1;
}

.logo img {
  max-height: 350px;
  width: auto;
}

#hamburger {
  display: none; /* Hide by default */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: absolute; /* Make sure it's absolutely positioned in the header */
  top: 50%; /* Vertically center the hamburger */
  right: 10px; /* Align it to the right of the container */
  transform: translateY(-50%); /* Adjust vertical alignment */
  z-index: 10;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 4px;
  transition: all 0.3s ease;
}

.nav-links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}

.nav-links ul li a {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  font-weight: 300;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links ul li a:hover {
  background-color: #fff1b9;
  color: rgb(49, 45, 45);
  border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .Rectangle-1 {
    flex-direction: row;
    height: 70px;
    padding: 0 15px;
    justify-content: space-between;
  }

  .logo {
    flex: 0;
  }

  #hamburger {
    display: flex; /* Show hamburger on mobile */
    position: absolute;
    top: 50%;
    right: 10px; /* Align to the right */
    transform: translateY(-50%);
  }

  .nav-links {
    display: none; /* Hide menu by default */
    flex-direction: column;
    position: absolute;
    top: 70px; /* Dropdown below the hamburger */
    right: 0;
    background-color: #fffcfc;
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
  }

  .nav-links.active {
    display: flex; /* Show the menu when active */
  }

  .nav-links li {
    margin: 1rem 0;
    text-align: center;
  }
}

/* Hide the hamburger on desktop */
@media (min-width: 769px) {
  #hamburger {
    display: none; /* Hide hamburger on desktop */
  }
  .logo img {
    max-height: 350px;
  }
}

.logo img {
  max-height: 350px;
  width: auto;
  left: -50px;
  position: relative;
}
