/* Footer styles based on survey.html */
.footer {
  background: #1f2937;
  color: #cbd5e1;
}
.footer-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand .logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-brand .logo-text {
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
}
.footer-brand .logo-icon {
  width: 32px;
  height: 32px;
  color: #4f46e5;
}
.footer-lead {
  margin-top: 8px;
  color: #9ca3af;
}

.footer-title {
  color: #ffffff;
  margin: 0 0 9px;
  font-family: "Assistant Bold";
}
/* Footer navigation styles */
.footer_nav,
.footer_info,
.footer_links {
  margin: 0;
  padding: 0;
}

.footer_nav ul,
.footer_info ul,
.footer_links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_nav li,
.footer_info li,
.footer_links li {
  margin: 0;
}

.footer_nav a,
.footer_info a,
.footer_links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer_nav a:hover,
.footer_info a:hover,
.footer_links a:hover {
  color: #ffffff;
}

/* Active state for footer links */
.footer_nav a.active,
.footer_info a.active,
.footer_links a.active {
  color: #ffffff !important;
  font-family: "Assistant SemiBold" !important;
}

/* Additional specificity for active states */
.footer .footer_nav a.active,
.footer .footer_info a.active,
.footer .footer_links a.active {
  color: #ffffff !important;
  font-family: "Assistant SemiBold" !important;
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 16px 24px 36px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  text-align: center;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}
