.site-footer {
  background-color: #d4d4d4;
  padding: 2rem;
  margin-top: 4rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}

.footer-content {
  max-width: 20rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}

.footer-logo {
  width: 80px;
  height: auto;
}

.footer-right {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-left, .footer-right {
    width: 100%;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 1rem;
  }
}