.main-footer {
  background: linear-gradient(to right, #00bfa6, #f8cdda);
  color: #222;
  padding: 40px 30px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-column a {
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column p {
  font-size: 14px;
  margin: 0;
}

.footer-logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 18px;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #00bfa6;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom a {
  color: #222;
  text-decoration: none;
  margin: 0 10px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom small {
  display: block;
  margin-top: 10px;
  opacity: 0.8;
}
