.footer {
  background-color: #111;
  color: #fff;
  padding: 3rem;
  padding-bottom: 1rem;
  font-family: sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.footer-left, .footer-middle, .footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-middle ul li a:hover {
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  color: #aaa;
  font-size: 1rem;
}

.footer-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-right a {
    color: #fff;              /* açık renkli temadaysan siyah da olabilir */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {         /* veya markana uygun başka renk */
    text-decoration: underline;
}