/* Donate & membership link in the header/footer menu */
.donate-link {
  background-color: #17224a;  /* dark blue background */
  color: #fff;                /* white text for contrast */
  padding: 10px 20px;         /* spacing around text */
  border-radius: 5px;         /* rounded corners */
  text-decoration: none;      /* remove underline */
}
.donate-link:hover {
  background-color: #d62828;   /* darker red on hover */
  text-decoration: none;       /* remove underline */
}
.membership-link{
  background-color: #17224a;  /* dark blue background */
  color: #fff;                /* white text for contrast */
  padding: 10px 20px;         /* spacing around text */
  border-radius: 5px;         /* rounded corners */
  text-decoration: none;      /* remove underline */
}
.membership-link:hover {
  background-color: #d62828;   /* darker red on hover */
  text-decoration: none;       /* remove underline */
}