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

:root {
  --green: #2d6a2d;
  --green-light: #4a8c3f;
  --cream: #f8f4ed;
  --gold: #c8860a;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --border: #e0d9ce;
}

body { font-family: 'Georgia', serif; background: #fff; color: var(--text); line-height: 1.7; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }

/* Cookie Banner */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #222; color: #fff; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-family: Arial, sans-serif; font-size: 14px;
}
#cookie-banner a { color: #aed6a0; }
#cookie-banner button {
  background: var(--green); color: #fff; border: none; padding: 8px 22px;
  border-radius: 4px; cursor: pointer; font-size: 14px; white-space: nowrap;
}

/* Header */
header {
  background: #fff; border-bottom: 2px solid var(--green);
  padding: 0 20px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { font-size: 22px; font-weight: bold; color: var(--green); letter-spacing: -0.5px; }
.logo span { color: var(--gold); }
nav { display: flex; gap: 24px; font-family: Arial, sans-serif; font-size: 15px; }
nav a { color: var(--text); font-weight: 500; }
nav a:hover { color: var(--green); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #eaf3e8 0%, #f8f4ed 100%);
  padding: 60px 20px; text-align: center; border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 36px; color: var(--green); margin-bottom: 14px; line-height: 1.3; }
.hero p { font-size: 18px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* Section */
.section { max-width: 1100px; margin: 0 auto; padding: 50px 20px; }
.section-title { font-size: 26px; color: var(--green); margin-bottom: 30px; border-left: 4px solid var(--gold); padding-left: 14px; }

/* Cards Grid */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.card { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; transition: box-shadow .2s; }
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); }
.card-img { width: 100%; height: 200px; object-fit: cover; display: block; background: #eaf3e8; }
.card-body { padding: 18px 20px; }
.card-tag { font-size: 12px; color: var(--gold); font-family: Arial, sans-serif; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.card-title { font-size: 18px; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.card-excerpt { font-size: 14px; color: var(--text-light); font-family: Arial, sans-serif; margin-bottom: 14px; }
.card-link { font-size: 14px; color: var(--green); font-family: Arial, sans-serif; font-weight: bold; }

/* Article */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 40px 20px 60px; }
.breadcrumb { font-size: 13px; font-family: Arial, sans-serif; color: var(--text-light); margin-bottom: 20px; }
.breadcrumb a { color: var(--green); }
.article-tag { font-size: 12px; color: var(--gold); font-family: Arial, sans-serif; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.article-title { font-size: 32px; color: var(--text); margin-bottom: 16px; line-height: 1.35; }
.article-meta { font-size: 13px; color: var(--text-light); font-family: Arial, sans-serif; margin-bottom: 24px; }
.article-hero { width: 100%; border-radius: 10px; margin-bottom: 30px; object-fit: cover; max-height: 400px; }
.article-body h2 { font-size: 22px; color: var(--green); margin: 30px 0 12px; }
.article-body p { margin-bottom: 16px; font-size: 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px 24px; font-size: 16px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 4px solid var(--gold); background: var(--cream);
  padding: 14px 20px; margin: 24px 0; border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--text-light);
}
.disclaimer {
  background: var(--cream); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 20px; margin-top: 36px; font-size: 13px; color: var(--text-light);
  font-family: Arial, sans-serif;
}

/* Related */
.related { background: var(--cream); padding: 40px 20px; border-top: 1px solid var(--border); }
.related-inner { max-width: 760px; margin: 0 auto; }
.related h3 { font-size: 20px; color: var(--green); margin-bottom: 20px; }
.related-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.related-card a { font-size: 15px; color: var(--text); font-weight: bold; line-height: 1.4; display: block; margin-bottom: 6px; }
.related-card p { font-size: 13px; color: var(--text-light); font-family: Arial, sans-serif; }

/* Footer */
footer { background: #1e3d1e; color: #c8d8c8; padding: 50px 20px 24px; font-family: Arial, sans-serif; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand p { font-size: 14px; color: #a0b8a0; margin-top: 10px; line-height: 1.6; }
footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: #a0b8a0; font-size: 14px; }
footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2d5a2d; padding-top: 20px; text-align: center; font-size: 13px; color: #6a8a6a; }

/* Legal pages */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 50px 20px; }
.legal-wrap h1 { font-size: 28px; color: var(--green); margin-bottom: 24px; }
.legal-wrap h2 { font-size: 20px; color: var(--text); margin: 28px 0 10px; }
.legal-wrap p, .legal-wrap li { font-size: 15px; margin-bottom: 12px; font-family: Arial, sans-serif; color: var(--text-light); line-height: 1.7; }
.legal-wrap ul { margin-left: 20px; }

/* Contact */
.contact-form { max-width: 560px; }
.contact-form label { display: block; font-size: 14px; font-family: Arial, sans-serif; color: var(--text-light); margin-bottom: 5px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 6px;
  padding: 10px 14px; font-size: 15px; margin-bottom: 16px; font-family: Arial, sans-serif;
}
.contact-form button {
  background: var(--green); color: #fff; border: none; padding: 12px 32px;
  border-radius: 6px; font-size: 16px; cursor: pointer;
}

@media (max-width: 768px) {
  nav { display: none; }
  .hero h1 { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .article-title { font-size: 24px; }
}
