.footer {
  background: #ffffff;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-desktop {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-section span {
  font-size: 20px;
  font-weight: bold;
  color: #051B23;
}

.footer-banner {
  width: 700px;
  height: auto;
}

.social-icons img {
  width: 30px;
  margin-left: 10px;
}

.footer-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.footer-links a {
  color: #032661;
  text-decoration: none;
  font-weight: 500;
}

.footer-description {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin: 10px 40px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom h3 {
  margin-bottom: 3px;
}

.social-links {
  display: flex;
  justify-content: center;

}

.copy {
  font-size: 14px;
  color: #0142B1;
  text-transform: uppercase;
}

.footer-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  text-align: center;
}

.footer-mobile-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-mobile-links,
.footer-mobile-socials-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-mobile-images img {
  width: 100%;
  max-width: 280px;
  margin: 5px auto;
}

.footer-mobile-text {
  font-size: 13px;
  padding: 0 15px;
  color: #000;
}

.footer-mobile-copy {
  color: #0142B1;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: flex;
  }
}
