/* Footer */
.footer {
  background: var(--slate-900);
  color: #fff;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
.footer-about h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.footer-about p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-300);
}
.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--slate-300);
  font-size: 16px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact p {
  font-size: 16px;
  color: var(--slate-300);
  margin-bottom: 8px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid var(--slate-700);
  padding-top: 15px;
  text-align: center;
  font-size: 16px;
  color: var(--slate-400);
}
