/* Footer Styles */
.footer {
  background: #1a202c;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.footer-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-brand {
  font-size: 2rem;
  font-family: 'Pacifico', cursive;
  color: #0d41ea;
  margin-bottom: 1rem;
}
.footer-desc {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d3748;
  border-radius: 0.5rem;
  color: #fff;
  transition: background 0.2s;
  text-decoration: none;
}
.footer-social-link:hover {
  background: #0d41ea;
}
.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-link:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #2d3748;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #a0aec0;
  font-size: 0.875rem;
}
