.footer {
  background-color: #f8f9fa;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #4d4f4e;
  font-size: 14px;
}

.logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between !important;
  padding: 5rem 0;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-company {
  flex: 1;
}

.footer-company .logo {
  width: 120px;
  margin-bottom: 1.5rem;
}

.footer-company .company-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #6c757d;
}

.footer-company .social-media {
  display: flex;
  gap: 1rem;
}

.footer-company .social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f3f5;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-company .social-media a:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex: 2;
  justify-content: end;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links .links-column {
  min-width: 160px;
}

.footer-links .links-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #343a40;
}

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

.footer-links .links-column li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links .links-column a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-links .links-column a:hover {
  color: var(--primary-color);
}

.footer-links .links-column a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links .links-column a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.footer-bottom {
  background-color: var(--primary-blue);
  padding: 1.5rem 0;
  color: white;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: white;
}

.footer-info {
  display: flex;
  gap: 2rem;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-info a:hover {
  color: white;
}

@media (max-width: 750px) {
  .footer-links {
    justify-content: start;
  }
}
