/* BudgetForklift.com Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0b0f19;
  color: #f1f5f9;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.text-amber { color: #f59e0b; }
.text-emerald { color: #10b981; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }

/* Headers & Nav */
.header-bar {
  background: #060911;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0f19;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
}

/* Standard Content Card */
.content-box {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.content-box h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.content-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin: 2rem 0 0.75rem;
}

.content-box p, .content-box li {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-box ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #0b0f19;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.85rem;
}

th {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

td {
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

tr:last-child td {
  border-bottom: none;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b0f19;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

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

/* Footer */
.simple-footer {
  background: #060911;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4rem;
}
