#footer.main-footer {
  margin-top: 2rem;
  padding: 1.5rem 0 1rem;
  border-top: 1px solid rgba(0, 127, 129, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
  color: #007F81;
  font-family: 'Roboto', sans-serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.footer-links a {
  color: #007F81;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #004f51;
  text-decoration: underline;
}

.copyright {
  font-size: 0.85rem;
  color: #007F81;
  opacity: 0.8;
}

[data-theme="dark"] #footer.main-footer {
  background-color: #1a1e24;
  border-top-color: #3e4a5c;
  color: #c5d2e5;
}

[data-theme="dark"] .footer-links a {
  color: #c5d2e5;
}

[data-theme="dark"] .footer-links a:hover {
  color: #4db6ac;
}

[data-theme="dark"] .copyright {
  color: #c5d2e5;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
} 