.footer {
  padding: 40px 16px;
  background: #1a3a6b;
  color: #fff;
  font-size: 14px;
  border-top: 4px solid #F84040;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copyright {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  flex-shrink: 0;
  width: 110px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social-icon img {
  width: 40px;
  height: 40px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.footer__links a {
  color: #fff;
}

.footer__links a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__content {
    flex-direction: column;
    text-align: left;
  }

  .footer__copyright {
    font-size: 12px;
  }

  .footer__social {
    font-size: 11px;
  }

  .footer__logo {
    width: 80px;
  }
}