.footer {
  display: flex;
  flex-direction: column;
}

.footer-info {
  background-color: var(--sidebar-color);
  padding: 60px 0px;
  color: var(--color-white);
  text-align: center;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 30px;
}

.footer-columns {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.footer-address {
    text-align: end;
}

.footer-contact {
    text-align: start;
}

.footer-address,
.footer-contact {
  font-size: 16px;
  line-height: 1.5;
}

.footer-contact p,
.footer-address p {
  margin: 4px 0;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-socials a {
  color: var(--color-accent);
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-reserved-rights {
    padding: 0px 50px;
}

/* RESPONSIVE TABLET (≤1024px) */
@media screen and (max-width: 1024px) {
  .footer-reserved-rights {
    padding: 0px 40px;
  }
}

/* RESPONSIVE MOBILE (≤768px) */
@media screen and (max-width: 768px) {
  .footer-reserved-rights {
    padding: 0px 30px;
  }
}

/* RESPONSIVE SMALL MOBILE (≤480px) */
@media screen and (max-width: 480px) {
  .footer-reserved-rights {
    padding: 0px 20px;
  }

  .footer-columns {
    flex-direction: column;
  }

  .footer-address {
    text-align: center;
  }
}