.footer-section {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100rem;
  flex-wrap: nowrap;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: flex-start;
}

.footer-links li a {
  text-decoration: none;
  color: var(--light-text-color);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-links li a:hover,
.footer-links li a:active {
  color: var(--main-text-color);
}

.footer-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-icon {
  color: var(--light-text-color);
  font-size: 1.25rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: var(--primary-main-color);
  transform: scale(1.2);
}

.social-icon:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-icons {
    justify-content: center;
  }
}
