/* footer.css */

footer {
  padding: 20px 40px;
  text-align: center;
  font-size: 0.9rem;
  background: transparent;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-content a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-content a:hover {
  color: #cccccc;
}

.footer-content div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-content img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}