/* Footer styles - two columns, no button */

footer .footer-data {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

footer .footer-data ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-data ul li {
  margin-bottom: 12px;
}

footer .footer-data ul li a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

footer .footer-data ul li a:hover {
  color: #00C853 !important;
}

footer .footer-data .footer-left {
  text-align: left;
}

footer .footer-data .footer-right {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  footer .footer-data {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  footer .footer-data .footer-left,
  footer .footer-data .footer-right {
    text-align: center;
  }
  footer .footer-data ul li a {
    font-size: 12px;
  }
}
