/* --------------------------------------------------
   GLOBAL RESET & BASE TYPOGRAPHY
-------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #f4f1e9;
  color: #2b2b2b;
  line-height: 1.6;
  padding: 20px;
}

/* --------------------------------------------------
   PAGE HEADER
-------------------------------------------------- */

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.page-summary {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #4a4a4a;
}

/* --------------------------------------------------
   GRID LAYOUT (INDEX + GUIDE PAGES)
-------------------------------------------------- */

.guides-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

/* --------------------------------------------------
   SEED CARD (MATCHES INDEX PAGE)
-------------------------------------------------- */

.seed-card {
  background: #faf7ef;
  border: 1px solid #d6d2c4;
  padding: 25px;
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.seed-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.seed-card ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.seed-card li {
  margin-bottom: 8px;
  font-size: 18px;
}

/* --------------------------------------------------
   LINKS
-------------------------------------------------- */

.seed-card a {
  color: #5a4b2f;
  text-decoration: none;
  font-weight: bold;
}

.seed-card a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------
   SECTION HEADINGS INSIDE GUIDE PAGES
-------------------------------------------------- */

.guide-body section {
  margin-bottom: 30px;
}

.guide-body h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #3a3a3a;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.page-footer {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  color: #6a6a6a;
}

/* --------------------------------------------------
   MOBILE RESPONSIVE
-------------------------------------------------- */

@media (max-width: 768px) {
  .seed-card {
    padding: 18px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .guide-body h2 {
    font-size: 22px;
  }

  .seed-card li {
    font-size: 17px;
  }
}
