#footer-maxmenu {
  font-weight: 400;
  font-size: 14px;
  padding: 30px 20px;
  border-top: 1px solid #282828;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 auto;
  min-width: 200px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-links li a {
  color: #a2a2a2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links li a:hover {
  color: #999999;
}

.footer-email {
  color: #999999;
  text-decoration: underline;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    min-width: 100%;
  }

  .footer-links {
    justify-content: center;
  }
}