/* ----- Footer ----- */
.bottom-bar {
  background: var(--dark-bg);
  color: var(--light-text);
  padding: 30px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-content p {
  font-size: 0.9rem;
  color: var(--light-text);
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #aaa;
}

.legal-links a:hover {
  color: var(--white);
}