/* Styles for the sticky header */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.sticky-header nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  display: flex;
  justify-content: space-around;
}

.sticky-header nav ul li {
  display: inline-block;
  margin-right: 20px;
}

.sticky-header nav ul li:last-child {
  margin-right: 0;
}

.sticky-header nav ul li a {
  text-decoration: none;
  color: #333;
}

/* Additional styles for the content */
.content {
  padding: 80px 20px 20px;
  /* Ensure content doesn't start behind the sticky header */
  margin-top: 80px;
}