/* Navbar styles */
.navbar-container {
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
}

.logo-container img {
  height: 40px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Remove default link styling */
.nav-buttons a {
  text-decoration: none;
}

.btn-book-demo {
  font-family: "GT Eesti Display", sans-serif;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 20px;
  color: #333;
  background-color: white;
  text-decoration: none !important;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-book-demo:hover {
  background-color: #f5f5f5;
}

.btn-start-free {
  font-family: "GT Eesti Display", sans-serif;
  font-weight: 500;
  background-color: #389aff;
  color: white !important;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  text-decoration: none !important;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-start-free:hover {
  background-color: #2a7ccc;
  color: white !important;
  text-decoration: none !important;
}

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .navbar-container {
    padding: 0 16px;
  }
  
  .navbar {
    padding: 16px 0;
  }
  
  .logo-container img {
    height: 24px;
  }
  
  .nav-buttons {
    gap: 8px;
  }
  
  .btn-book-demo, .btn-start-free {
    padding: 6px 12px;
    font-size: 14px;
  }
}
