* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
  font-family: 'Courier New', Courier, monospace; 
  background: #fafafa; 
  color: #222; 
  line-height: 1.6;
  padding: 40px 20px;
}

.container { max-width: 720px; margin: 0 auto; }

h1 { 
  font-size: 48px; 
  margin-bottom: 8px; 
  font-weight: bold;
  letter-spacing: -1px;
}

h2 { 
  font-size: 20px; 
  margin: 48px 0 16px; 
  font-weight: bold;
}

p { margin-bottom: 16px; font-size: 16px; }

a { 
  color: #222; 
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover { background: #222; color: #fafafa; }

.btn { 
  display: inline-block;
  padding: 12px 24px; 
  background: #222; 
  color: #fafafa; 
  text-decoration: none;
  margin: 24px 0;
  transition: all 0.2s;
}

.btn:hover { background: #444; }

.services { 
  list-style: none;
  margin: 16px 0;
}

.services li:before { content: '> '; }

footer { 
  margin-top: 64px; 
  padding-top: 24px; 
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #666;
}
