/* Footer */
footer {
  background: #0b1724;
  color: #e5e7eb;
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-text {
  margin: 0;
  color: #e5e7eb;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-tagline {
  margin: 0;
  color: #9ca3af;
  font-style: italic;
  text-align: right;
}

.footer-link {
  color: #60a5fa;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Footer responsive */
@media (max-width: 880px) {
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-section {
    min-width: auto;
    width: 100%;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-tagline {
    text-align: center;
  }
}
