/* Footer */
footer {
  background: var(--white);
  border-top: none;
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gray-900);
}

.footer-info {
  text-align: left;
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-info a {
  color: var(--green-primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column-reverse;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    gap: 1.25rem;
  }

  .footer-info {
    text-align: center;
  }
}
