.site-footer {
  margin-top: 40px;
  padding: 20px 0;
  background: transparent;          /* Matches header */
  /*border-top: 1px solid #e0e0e0;    /* Very subtle divider */
  border-top: none;
  box-shadow: 0 -1px 2px rgba(0,0,0,0.05);
  text-align: center;
  font-size: 0.95rem;
  color: #555;                      /* Same tone as header text */
}
/* Footer nav container */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;        /* spacing between links */
  margin-bottom: 10px;
}

/* Footer links */
.footer-nav a {
  /* color: #0078ff; /* same as header */
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 12px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-note {
  margin-top: 10px;
  color: #333;
  font-size: 0.85rem;
}
