body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f9fa;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  font-size: 1.25rem;
  color: #000;
  text-decoration: none;
}

.navbar-toggler {
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  margin: 5px 0;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
}

.nav-item {
  margin-right: 1rem;
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
}

.nav-buttons {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000;
}

.nav-buttons svg {
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  z-index: 1;
  width: max-content;
}

.dropdown-menu .row {
  display: flex;
}

.dropdown-menu .col {
  margin-right: 20px;
}

.dropdown-item {
  color: #333;
  display: block;
  padding: 10px 0;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #e7e7e7;
  border-radius: 5px;
}

.get-started {
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
}

.get-started:hover {
  background-color: #0056b3;
}

.show {
  display: block;
}
