.footer {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 20px 10px;
  font-size: 14px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  color: #fff;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-branding {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-legal {
  font-size: 12px;
  color: #999;
}

@media (min-width: 600px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-branding,
  .footer-links,
  .footer-legal {
    margin-bottom: 0;
  }
}
/* Base header styles */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 15px 20px;
  color: #fff;
  position: relative;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00ffe7; /* Matrix-style green-blue glow */
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #00ffe7;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #1a1a1a;
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}

.app-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  text-decoration: none;
}

.brand-name .accent {
  color: #6366f1;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.cta-button {
  padding: 0.5rem 1rem;
  background-color: #6366f1;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #4f46e5;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}