




.footer {
  background-color: #333;
  color: white;
    margin-top: 20px;
    height: auto;
  align-content: center;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: left;
  flex-wrap: wrap;


}

.footer-logo {
  flex: 1;
  max-width: 200px;
  text-align: left;
  margin-left: 200px;
}

.footer-logo img {
  max-width: 100%;
  height: auto;
}

.footer-address {
  flex: 1;
  max-width: 200px;
  text-align: left;
  justify-content: center;
}

.footer-links {
  flex: 1;
  max-width: 200px;
  text-align: left;
  margin-right: 200px;
}

.footer-links h3,
.footer-address h3 {
  margin-bottom: 10px;
  text-align: left;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 5px 0;
}

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

.footer-links a:hover {
  color: #007BFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    height: auto;
  }

  .footer-logo,
  .footer-address,
  .footer-links {
    min-width: auto;
    margin-bottom: 20px;
    align-items: center;
     justify-content: center;
    margin-left: 0px;

  }
}



