.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  margin: 20px;
  flex-basis: 45%; /* Adjusted for two columns */
}

@media (max-width: 768px) {
  .footer-section {
    flex-basis: 100%; /* Stack columns on smaller screens */
    margin: 10px 0;
  }

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

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #555;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #777;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #555;
  padding-top: 20px;
}
