
body {
  font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
  margin: 0;
  padding: 0;
}
/* Mobile menu styles */
#mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 50;
  overflow-y: auto;
  padding: 1rem;
}

#mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--vlc-navy);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.2s ease;
  font-size: 1rem;
}

#mobile-menu a:hover {
  color: var(--vlc-leaf);
  background-color: rgba(0, 160, 233, 0.05);
}

#mobile-menu h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--vlc-navy);
  margin-bottom: 0.75rem;
  padding-left: 1rem;
}

#mobile-menu > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#mobile-menu > div > div {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
}
#mobile-menu-button {
  position: relative;
  z-index: 60;
}
@media (min-width: 768px) {
  #mobile-menu {
    display: none !important;
  }
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}
