/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-desc {
  color: #bbb;
  margin: 20px 0;
  font-size: 14px;
}

.footer-powered {
  font-size: 13px;
  color: #bbb;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-col h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 24px;
  color: white;
}

.link-col a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.2s;
}

.link-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #999;
  font-size: 13px;
}

