footer {
  text-align: center;
  padding: 1rem 0;
  background: linear-gradient(120deg, #0a2342 0%, #185a9d 60%, #002E5D 100%);
  z-index: 100;
  width: 100%;
  overflow-x: hidden;
}
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  color: white;
}
.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 0.5rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: #ffd700;
}
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  color: #cce6ff;
  font-size: 0.95rem;
}
.footer-bottom a {
  color: #cce6ff;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.social-icons a {
  color: #fff;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.social-icons a:hover {
  color: #ffd700;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    margin-bottom: 1rem;
  }
}