.header {
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.headerContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img{
  width: 105px;
  height: unset;
}
.nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.navLink {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.navLink:hover,
.navLinkActive {
  color: #00A63E;
}

.ctaButtons {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ctaButtons {
    display: flex;
  }
}

.getStartedBtn {
  background-color: #00A63E;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.getStartedBtn:hover {
  background-color: #008a35;
}

.mobileMenuBtn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobileMenuBtn {
    display: none;
  }
}

.mobileNav {
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .mobileNav {
    display: none;
  }
}
@media (max-width: 767px) {
  .ctaButtons, .getStartedBtn {
    display: none;
  }
}

.mobileNavContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobileNavButtons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}