/* styles.css */

/* Menu styling */
nav {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.logo img {
  height: 40px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 10px;
}

.menu li {
  margin-right: 10px;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

/* Add more CSS styles for the other sections as needed */
