.footer_home {
  background-color: var(--secondary-color);
  padding: 20px 10px;
  color: var(--text-color);
  font-size: 14px;
}

.footer_top_home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer_top_home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}




.footer_logo_home img {
  height: 40px;
  width: auto;
}

.footer_links_home {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ Center the links */
  gap: 15px;
}

.footer_links_home li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

.footer_links_home li a:hover {
  color: var(--primary-color);
}

.footer_bottom_home {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--light-text);
}

/* Mobile First */
@media (min-width: 768px) {


  .footer_links_home {
    justify-content: flex-end;
  }
}
