@import url("../../assets-custom/root.css");

.site-footer {
  padding: 20px;
  font-family: sans-serif; /* or your preferred font */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* so columns wrap on smaller screens */
  gap: 30px;
}

.footer-left {
  min-width: 250px; /* prevents columns from collapsing too narrow */
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 70px;
}

.footer-logo .highlighted {
  color:var(--ea-primary-color); /* highlight color */
}

.horizontal-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* wrap links on smaller screens */
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.horizontal-links li a {
  text-decoration: none;
  color: var(--footer-color); /* adjust as needed */
}

.payment-icons img {
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.footer-right {
  min-width: 250px;
}

.footer-heading {
  margin-bottom: 10px;
  color: var(--footer-color);
}

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

.footer-info li {
  margin-bottom: 5px;
  color: var(--footer-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.footer-info span {
  color: var(--footer-color);
 
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--footer-color);
}

