/* ======================
   FOOTER
====================== */
.site-footer {
  background-color: #0a2c3e;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}

.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-text {
  color: white;
}

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

.footer-links a {
  margin: 0 8px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6db3e8;
}

.footer-links span {
  margin: 0 6px;
  color: #999;
}

/* ============================
   MEDIA QUERIES – FOOTER
============================ */
@media (max-width: 1024px) {
  .site-footer .footer-content {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .site-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}