/*
  portal-legacy.css

  Purpose:
  - Consolidate shared styling used by the legacy/simple top-level pages
    (about.html, products.html, solutions.html, team.html).
  - This reduces per-page inline CSS so future tweaks happen in one place.

  NOTE:
  - This stylesheet is intentionally small and only targets the legacy pages.
  - The newer template-driven pages use /assets/portal-ui.css.
*/

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #10b981;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.5rem;
}

.btn:hover {
  filter: brightness(1.03);
}
