/* Footer Specific Styles */
.footer {
  width: 100%;
  margin-top: auto;
}

.footer-content {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-column:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-black);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  transition: opacity var(--transition-base);
}

.footer-icons a:hover img {
  opacity: 0.8;
}

/* --- Mobile Styles --- */
@media (max-width: 1200px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem; /* Increased gap for clarity */
  }

  .footer-title {
    margin-bottom: 0.5rem; /* Adjusted margin for the new layout */
  }

  /* The last column is aligned to the left on mobile */
  .footer-column:nth-child(3) {
    align-items: flex-start;
  }
}
