    /* Footer CSS */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 20px 20px 20px;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
  margin: auto;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.footer-links,
.social-links {
  list-style: none;
  padding: 0;
}

.footer-links li,
.social-links li {
  margin-bottom: 5px;
}

.footer-links a,
.social-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.social-links a:hover {
  color: #00aced; /* Açık mavi */
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 300px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}