/* Footer */
footer {
  background:#ece5d2;
  color:#653728;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  margin: 20px;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.footer-section p, .footer-section ul, .footer-section li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section ul {
  padding-left: 0;
}

.footer-section a {
  color: #653728;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Footer : Social icons */
.social-icons {
  display: relative;
  padding: 10px;
}

.social-icons a {
  background-color: #653728;
  padding: 4px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px;
  font-size: 20px;
  color: #ece5d2; 
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.social-icons a:hover {
  color: #653728;
  background:transparent;
  border: 1px solid #653728;
  transition: ease-in-out 0.5s;
}