.footer {
  background-color: #121212;
  color: #f0f0f0;
  padding: 60px 80px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-section {
  margin-bottom: 50px;
}

.footer h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  color: #bbbbbb;
  text-decoration: none;
  font-size: 15px;
  padding: 5px 10px;
  transition: color 0.3s, transform 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer h2 {
    font-size: 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    font-size: 14px;
    padding: 8px 0;
  }
}
