footer.footer {
  width: 100%;
  background-color: #402A2E;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  line-height: 1.3;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid #fff;
  box-sizing: border-box;
 
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 8px;
}

.socialdiv {
  flex: 1 1 100%;
  margin-bottom: 10px;
  text-align: center;
}

.sociallinks {
  font-size: 20px;
  margin: 0 10px;
  color: #F6F5F1;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.sociallinks:hover,
.sociallinks:focus {
  opacity: 1;
  color: #F6F5F1;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #F6F5F1;
  font-weight: 400;
}

.info-col p {
  margin: 0;
}

a.linkf {
  color: #F6F5F1;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

a.linkf:hover,
a.linkf:focus {
  color: #ddd;
  text-decoration: none;
}

.logos {
  display: flex;
  gap: 20px;
  align-items: center;
}

.logos img {
  max-height: 40px;
  height: auto;
  width: auto;
  filter: brightness(100%);
}

.footer-bottom {
  border-top: 1px solid #5a3d40;
  padding-top: 6px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  color: #F6F5F1;
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
  color: #F6F5F1;
  font-weight: 300;
}

.info-col.logos a:first-child img {
  height: 100px;
  width: 140px;
  transition: transform 0.3s ease;
}

.info-col.logos a:first-child img:hover {
  transform: scale(1.05);
}

.info-col.logos a:last-child img {
  height: 80px;
  width: 130px;
}

@media (max-width: 767px) {
  .info-col.logos a:first-child img {
    height: 90px;
    width: 140px;
  }
  
  .info-col.logos a:last-child img {
    height: 80px;
    width: 130px;
  }
}



/* Responsive */
@media (max-width: 768px) {
  footer.footer {
    padding: 8px 15px;
    font-size: 12px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .socialdiv {
    margin-bottom: 8px;
  }
  .info-row {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .info-col {
    align-items: center;
    text-align: center;
  }
  .logos {
    gap: 12px;
  }
  .footer-bottom {
    padding-bottom: 20px; /* Added bottom padding for mobile to avoid cutoff */
  }
  .footer-bottom p {
    font-size: 10px;
  }
}

