/* CSS Document for custom footer */
.custom-footer {
  background: linear-gradient(135deg, #eef2f7, #f9fafb);
  border-top: 1px solid #e5e7eb;
  padding: 80px 5vw 50px;
  font-family: 'Manrope', sans-serif;
  color: #1f2937;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
.footer-section p,
.footer-section a {
  font-size: 15px;
  color: #374151;
  text-decoration: none;
  line-height: 1.75;
}
.footer-section a:hover {
  color: #0ea5e9;
  text-decoration: none;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.footer-logo {
  width: 160px;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}
.footer-section .tagline {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}
.footer-section .mission {
  font-size: 14px;
  color: #6b7280;
  max-width: 300px;
}
.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  color: #6b7280;
}
.footer-bottom .certs {
  font-style: italic;
}
/* CSS Document */

