  /* Menu */
 
 
  .main-navbar {
  background-color: white !important;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 999;
  border-bottom: 2px solid #1479C9;
}

.main-navbar a {
   color: #1479C9; /* Beige */
  margin: 0 10px;
  font-size: 1.25rem; /* Slightly larger (was 1.125rem) */
  text-decoration: none;
  font-weight: normal; /* Remove bold */
  transition: color 0.3s ease;
}

.main-navbar a:hover {
  color: #000; /* Hover to black */
}

