/* Generated premium classless CSS */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --bg-color: #f3f4f6;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --card-bg: #ffffff;
  --radius: 12px;
  --font-family: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
  font-family: var(--font-family);
  background: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
h1, h2, h3, h4 { color: #111827; margin-bottom: 1.2rem; line-height: 1.2; font-weight: 800; }
p, ul, ol { margin-bottom: 1.2rem; }
a { color: var(--primary); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; color: var(--primary-hover); }
button, input[type="submit"], input[type="button"], a.btn, button.btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
}
button:hover, input[type="submit"]:hover { background: var(--primary-hover); }
input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
}
img { max-width: 100%; height: auto; border-radius: 8px; margin-bottom: 1rem; }
ul { padding-left: 1.5rem; }
nav { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 2rem; }
nav a { color: var(--text-muted); font-weight: 600; }
nav img { height: 40px; margin: 0; }
