/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f9;
}

/* Navbar Styles */
.navbar {
  /* color: white; */
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
  /* color: white; */
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  /* color: white; */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-link:hover {
  color: #3498db;
}

.navbar-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem 0;
    padding-left: 2rem;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }
}

