.site-footer {
  background: rgba(255, 255, 255, 0);
  color: #fff;
  font-size: 14px;
}
.site-footer .footer-top {
  background: linear-gradient(to bottom, #b282fe, #b282fe);
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffffffdd;
  text-decoration: none;
}
.footer-top .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}
.footer-top h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}
.footer-top p {
  line-height: 1.6;
}
.footer-top ul {
  list-style: none;
  padding: 0;
}
.footer-top li {
  margin-bottom: 8px;
}
.footer-bottom {
  background-color: #b282fe;
  border-top: 1px solid #ffffff55;
  padding: 20px;
}
.footer-bottom .bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-bottom .legal-links {
  margin-bottom: 10px;
}
.social-icons a {
  margin: 0 8px;
}
.social-icons a:hover {
  color: #ffffffdd;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer-bottom .bottom-content {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
