footer {
  background-color: #001f3f; /* Dark Navy Blue */
  color: #eee;
  padding: 40px 0;
  font-size: 0.95rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-content p {
  margin-bottom: 16px;
}

.footer-content a {
  color: #fcbf49;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}
