.footer {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  color: #002867;
  font-family: 'Roboto', sans-serif;
  padding: 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-middle {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.footer-right {
  flex: 1;
  text-align: right;
  min-width: 250px;
}

.footer-logo-img {
  max-width: 200px;
  margin-bottom: 0rem;
}

.contact-info p, .footer-links li, .footer-bottom p {
  margin: 0.5rem 0;
}

.footer-links {
  list-style: none; /* Removes bullet points */
  padding: 0;       /* Removes default padding */
  margin: 0;        /* Removes default margin */
}

.footer-links li a {
  color: #002867;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #00B9D4;
}

.social-icons a {
  margin: 0 0.5rem;
  color: #002867;
  font-size: 1.5rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #00B9D4;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #555;
  padding-top: 0rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-left, .footer-middle, .footer-right {
    flex: 1 1 100%;
    text-align: center;
  }
}
