.footer {
  background-color: #f3f4f6;
  color: #374151;
  padding: 3rem 0;
  width: 100%;
}

.footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  font-size: 1.5rem;
  color: #f59e0b;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-description {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #4b5563;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #111827;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #4b5563;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #111827;
}

.footer-divider {
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
}

.footer-logo {
  font-size: 0.9rem;
  width: 1.7rem; /* w-10 */
  height: 1.7rem; /* h-10 */  background-color: #1f2937;
  color: white;
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.1rem; /* mr-3 */
}
