.footer {
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 30px;
  font-family: 'Segoe UI', sans-serif;
}

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

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

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

.footer-column ul li a{
  color: #fff;
  text-decoration: none;
}

.footer-column i {
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  width: 50px;
  color: white;
  border-radius: 10%;
  padding: 5px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.facebook{
  background-color: #3b5998;
}

.instagram{
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}

.linkedin{
  background-color: #0077B5;
}

.social-icons a:hover {
  background-color: #555;
  background: #555;
  transition: background-color 0.3s ease;
}