/* footer.css */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 50px; /* adjust value as needed */
}

footer {
  position: relative;
  width: 100%;
  z-index: 2;
  font-size: 14px;
  color: white;
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(to right, #410b47 36.75%, #5a0606 72.16%) !important;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  text-align: left;
}

.footer-column.center {
  text-align: center;
  flex: 1.5;
}

.footer-column.right {
  text-align: right;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

img.whatsapp {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Media query for smaller screens */
@media only screen and (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-column.center {
    flex: unset;
  }
  
  .footer-column.left {
    order: 1;
    text-align: left;
  }
  
  .footer-column.center {
    order: 2;
    text-align: center;
  }
  
  .footer-column.right {
    order: 3;
    text-align: right;
  }
}



