.footer {
  background-color: #f4f9f8;
  color: #333;
  font-family: sans-serif;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10vw;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.footer-column h4 {
  font-size: 16px;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-column ul li a:hover {
  color: var(--primary-light);
}

.footer-socials {
  padding: 1rem 0;
}

.footer-socials svg {
  fill: grey !important;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

@media only screen and (max-width: 900px) {
  .footer-container {
    flex-wrap: wrap;
    padding: 0 7.5vw;
    gap: 20px;
  }
}

@media only screen and (max-width: 560px) {
  .footer-container {
    padding: 0 5vw;
  }

  .footer-container .footer-column {
    max-width: 100%;
    min-width: none;
  }

  .sized {
    max-width: 45% !important;
    width: 45% !important;
  }
}
