/* Styl stopki */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer .container {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-menu a {
  color: var(--light-color);
  font-size: 14px;
}

.contact-info {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #fff;
}

.footer_coppy {
  width: 100%;
}

.footer_sign {
  color: var(--light-color);
}

.footer__logo img {
  height: 90px;
  margin-right: 10px;
}

/* Footer Styles for Mobile */
@media (max-width: 1100px) {
  footer {
    padding: 10px 0;
  }

  .footer-menu {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu li {
    margin: 5px 0;
  }

  .contact-info {
    margin-top: 15px;
  }

  /* Optional: Adjust the appearance of the copyright text for mobile */
  footer p:last-child {
    margin-top: 15px;
    font-size: 10px;
  }
}

/* Footer Styles for Mobile */
@media (max-width: 905px) {
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
