/* Reset */
body, ul {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}

/* Sticky Navbar Styling */
.navbar {
  position: sticky;
  top: 0;
  background-color: #333;
  padding: 10px 0;
  z-index: 1000;
}

.navbar ul {
  display: flex;
  justify-content: center;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar ul li a:hover {
  color: #ffcc00;
}

/* Content styling for scroll */
.content section {
  padding: 100px 20px;
  border-bottom: 1px solid #ccc;
  min-height: 100vh;
}
