/* FOOTER STYLES */
.footer-links {
  text-align: center;
  padding: 20px 0 0;
  margin-top: 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #999;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}

.footer-links li {
  display: inline-block;
  margin: 0 10px;
  margin-bottom: 12px; /* optional spacing */
}

.footer-links a {
  color: #3b5998;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px; /* space for underline */
}

/* Animated underline */
.footer-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px; /* thickness of underline */
  background-color: #ffbb1a; /* matches text color */
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

/* Hover effect */
.footer-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.footer-links p {
  margin-top: 5px;
  font-size: 12px;
  color: #aaa;
}