.footer {
  background: #fff;
  color: #000;
  border-top: 1px solid #ddd;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.footer-top .address {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
}
.footer-top .address .Location {
  width: 40px;
}

.footer-top .address .f-logo > img{
  width: 180px;
}

.add{
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
}
.footer-links div {
  min-width: 150px;
}
.footer-links h4 {
  margin-bottom: 0.5rem;
  text-decoration: underline;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 0.3rem;
}
.footer-links ul li a{
  color: black;
  text-decoration: none;

}
.footer-social {
  text-align: center;
  margin-top: 1rem;
}
.footer-social p {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.footer-social a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: #4b0082;
  text-decoration: none;
}
.footer-bottom {
  background-color: #4b0082;
  color: #fff;
  text-align: center;
  padding: 1rem 1rem;
  margin-top: 2rem;
}


@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
  .footer-top .address {
    max-width: 300px;
  }

  .f-logo img{
    width: 100px;
  }
}
