.footer {
  background: linear-gradient(90deg, #b678fd 0%, #8c30c2 100%);
  color: #fff;
  padding: 30px 0 10px 0;
  font-family: "Poppins", Arial, sans-serif;
  margin-top: 40px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 0 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2em;
  font-weight: 600;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffe082;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98em;
}
.footer-contact i {
  margin-right: 6px;
}
.footer-contact a {
  color: #fff;
  margin-right: 10px;
  font-size: 1.2em;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #ffe082;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.95em;
  color: #e0cfff;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
}
