/* PA CareRate brand: navy (#1a365d), orange (#f97316), Inter font */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #1a365d;
  color: #ffffff;
  min-height: 100vh;
}

a { color: #f97316; text-decoration: none; }
a:hover { color: #ea580c; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.15);
}

.nav-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover { color: #ffffff; }
.nav-links a.active { color: #f97316; }

.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.footer a {
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #ea580c; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
