html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 2px 4px #00000014;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.navbar-menu {
  display: flex;
  gap: 50px;
  align-items: center;
}
.navbar-link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.navbar-link:hover {
  color: #3b82f6;
}
.navbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-title {
  margin-bottom: 16px;
}
.hero-subtitle {
  max-width: 600px;
  margin-bottom: 24px;
}
.hero-cta {
  margin-top: 20px;
}
.features {
  padding: 40px 20px;
}
.features-title {
  text-align: center;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-title,
.feature-desc {
  text-align: center;
}
.purpose {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}
.purpose-title {
  margin-bottom: 24px;
}
.stats {
  background-color: #f7f7f7;
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer {
  background-color: #f9fafb;
  padding: 40px 20px;
  width: 100%;
  border-top: 1px solid #e5e7eb;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-description {
  max-width: 250px;
  color: #6b7280;
}
.footer-section-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: #374151;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #3b82f6;
}
.footer-divider {
  margin-top: 30px;
  margin-bottom: 30px;
  height: 1px;
  background-color: #e5e7eb;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  color: #6b7280;
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social-link {
  color: #374151;
  transition: color 0.2s ease;
}
.footer-social-link:hover {
  color: #3b82f6;
}
@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
  .navbar-actions {
    gap: 8px;
  }
  .hero {
    padding: 60px 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
.app-root {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
.app-content {
  margin-bottom: 120px;
}
.suspense-fallback {
  padding: 40px;
  text-align: center;
}
