.footer {
  width: 100%;
  padding: 20px 0; /* Controls spacing instead of height */
}

.footer h5 {
  font-weight: bold;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: silver !important;
}

.footer .list-inline-item a {
  font-size: 1.2rem;
  margin-right: 10px;
}

.footer .list-inline-item a:hover {
  color: silver !important;
}

.footer p {
  font-size: 0.9rem;
}

/* Center content on smaller screens */
@media (max-width: 990px) {
  .footer .row>div {
    text-align: center;
  }

  .footer {
    padding: 30px 0; /* Use padding instead of height */
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0; /* Slightly more padding for better spacing */
    min-height: 100vh; /* Ensure footer takes full height if needed */
    flex-shrink: 0; /* Prevent shrinking of the footer */
  }
}
