/* Simple Footer for Busy Mars - Three Columns Layout */
.footer-simple {
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 0.5rem 2rem;
  font-family: 'Inter', 'Lato', Arial, sans-serif;
  font-size: 1.1rem;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 10;
  box-sizing: border-box;
}
.footer-simple-left {
  flex: 1;
  text-align: left;
  min-width: 180px;
}
.footer-simple-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.footer-simple-center a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-simple-center a:hover {
  color: #05be30;
}
.footer-simple-center i {
  margin: 0 0.2rem;
}
.footer-simple-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  min-width: 180px;
}
.footer-simple-right a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-simple-right a:hover {
  color: #05be30;
}
@media (max-width: 800px) {
  .footer-simple {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }
  .footer-simple-left, .footer-simple-center, .footer-simple-right {
    flex: unset;
    min-width: unset;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .footer-simple-right {
    gap: 1.2rem;
    margin-top: 0.5rem;
  }
}
/* Hide old footers and social sections if present */
.footer, .footer-content, .footer-section, .footer-bottom, .social-section, .social-icons {
  display: none !important;
} 