.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 10px;
  font-size: 14px;
  direction: rtl;
}

.footer-links h5 {
  margin: 0;
  font-weight: normal;
  white-space: nowrap;
}

.footer-links a {
  color: black;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #007bff; /* رنگ آبی ملایم در هاور */
}

/* نسخه موبایل */
@media (max-width: 400px) {
  .footer-links {
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
  }
}
