
:root {
  --primary-color: #6c63ff;
  --accent-color: #a58fff;
}

.site-footer {
  background: #111;
  color: #eee;
  font-family: sans-serif;
  font-size: 14px;
width:100%; 
}

.footer-container {
  padding: 40px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
max-width:1000px;
  margin: auto;
  gap: 40px;
}

.footer-brand {
  flex: 1;
}

.footer-brand h2 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 20px;
}

.footer-links,
.footer-social {
  flex: 1;
  min-width: 150px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}

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

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;

  text-decoration: none;

}

.social-icons a {
  color: #ccc;
  font-size: 18px;
    display: flex;
  text-decoration: none;

}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #333;
  margin-top: 40px;
}
.social-icons i {
display:flex;
  position: static !important;
  align-self:center;
  
}




