.footer-wrapper {
  background-color: #f8f8f8;
  padding: 20px 24px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-content a {
  display: inline;
  color: #007acc;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  transition: color 0.2s ease;
}

.footer-content a:hover {
  color: #005999;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-content a {
    font-size: 14px;
  }
}
