:root {
    --primary: #2d5a27;
    --secondary: #8b5a2b;
    --bg: #f9f9f6;
    --surface: #ffffff;
    --text: #333333;
    --text-light: #f4f4f4;
    --border: #e0e0e0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header {
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

av a:hover {
    color: var(--primary);
}

.hero {
    padding: 4rem 0;
    text-align: center;
}

.bg-forest {
    background-color: var(--primary);
}

.text-light {
    color: var(--text-light);
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.ad-container {
    margin: 2rem auto;
    text-align: center;
    min-height: 120px;
}

section {
    margin: 3rem auto;
}

.evaluator h2, .maintenance-guide h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.maintenance-guide h3 {
    margin: 1.5rem 0 0.5rem 0;
    color: var(--secondary);
}

.maintenance-guide p {
    margin-bottom: 1rem;
}

.activity-selector {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn:hover, .btn.active {
    background: var(--primary);
    color: var(--surface);
}

.checklist-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.category {
    margin-bottom: 2rem;
}

.category h3 {
    background: #eef2eb;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    color: var(--primary);
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.check-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.check-item input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.item-details h4 {
    margin-bottom: 0.25rem;
}

.item-details p {
    font-size: 0.9rem;
    color: #666;
}

.actions span {
    display: inline-block;
    font-size: 0.8rem;
    background: #eee;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.page-content {
    padding: 3rem 1rem;
    min-height: 60vh;
}

.site-footer {
    text-align: center;
    padding: 2rem 0;
    background: #333;
    color: #ccc;
    margin-top: 4rem;
}

.site-footer nav {
    margin-top: 1rem;
}

.site-footer a {
    color: #ccc;
    margin: 0 0.5rem;
}

@media (max-width: 600px) {
    .btn {
        width: 100%;
    }
    .hero h1 {
        font-size: 2rem;
    }
}


/* Factory-injected deployment helpers. The AI owns the site design above this block. */
.ad-unit {
  width: min(100%, 720px);
  min-height: 120px;
  margin: 24px auto;
  display: block;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 40px auto;
}

.factory-fallback-nav {
  width: min(900px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  font-size: 0.95rem;
}

.factory-fallback-nav a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
