/* Navigation Menu Styling */
.top-nav {
  width: 100%;
  padding: 10px 0;
  text-align: center;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between menu links */
}

.top-nav a {
  color: #2F2963;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.top-nav a:hover {
  color: #228B22; /* Changes color to match green accent on hover */
  text-decoration: underline;
}