/*===========================
  Shared Main Content Styles
===========================*/
.plantzone-main,
.healthzone-main,
.toolzone-main {
  max-width: 860px;
  margin: 0 auto;             /* remove top margin */
  padding: 0rem 1rem 3rem;    /* adjust top padding if needed */
  background: var(--bg-panel);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1.05em;
  line-height: 1.65;
  color: #2a2a2a;
}

/*=====================================
  Zone Title (across plants/health/tools)
=====================================*/
.zone-title {
  color: var(--heading-color);
  font-size: clamp(1.7rem, 4vw, 1.5rem);
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  display: block;              /* full-width block */
  padding-top: 0.6rem;         /* zone title top padding */
  margin: 0rem auto 0.2rem;    /* auto left/right centers it */
  text-align: center;          /* ensure any wrapped text is centered */
}

/*===========================
  Headings and Typography (sections only)
===========================*/
.plantzone-main section h1,
.plantzone-main section h2,
.healthzone-main section h1,
.healthzone-main section h2,
.toolzone-main section h1,
.toolzone-main section h2 {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

/* Anchor Offsets for h2 (sections only) */
.healthzone-main section h2,
.toolzone-main section h2 {
  scroll-margin-top: 90px;
  padding-top: 1.5em;
  position: relative;
}
.healthzone-main section h2::before,
.toolzone-main section h2::before {
  content: "";
  display: block;
  height: 90px;
  margin-top: -90px;
  visibility: hidden;
}

/*===========================
  Section Spacing
===========================*/
.plantzone-main section,
.healthzone-main section,
.toolzone-main section {
  margin-bottom: 2rem;
}

/*===========================
  Lists
===========================*/
.plantzone-main ul,
.plantzone-main ol,
.healthzone-main ul,
.healthzone-main ol,
.toolzone-main ul,
.toolzone-main ol {
  margin-left: 2rem;
}

.page-title,
.zone-title {
  display: block;
  margin: 0 auto 1em auto; /* top: 0, auto left/right centers, bottom margin */
  text-align: center;       /* optional if text inside needs centering */
}

/*===========================
  Centered & Side Images
===========================*/
.img-right {
  float: right;
  width: 200px;
  max-width: 40%;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.09);
}
.img-caption {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

/*===========================
  Product Feature Cards
===========================*/
.product-feature {
  display: flex;
  align-items: flex-start;
  margin: 1.5rem 0;
  gap: 1.25rem;
  background: #f7f7fa;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  padding: 1rem;
}
.product-feature img {
  flex: 0 0 140px !important;
  width: 140px !important;
  max-width: 140px !important;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.product-feature strong {
  font-size: 1.1em;
  color: #2f7f2f;
}
@media (max-width: 600px) {
  .product-feature {
    flex-direction: column;
    align-items: stretch;
  }
  .product-feature img {
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*===========================
  Expert Block (Plant & Tool)
===========================*/
.healthzone-expert blockquote,
.plantzone-expert blockquote,
.toolzone-expert blockquote {
  background: #f9f9f9;
  padding: 1rem;
  border-left: 3px solid #aac837;
  margin: 1.2rem 0;
  font-style: italic;
}

/*===========================
  FAQ Section (Health)
===========================*/
.faq-submit {
  background: #f7f7fa;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  padding: 1rem;
  margin-top: 2rem;
  max-width: 400px;
}
.faq-submit textarea {
  width: 95%;
  max-width: 380px;
}
.faq-submit button {
  margin-top: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: #e0f6d9;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}
.plantzone-faq {
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
}
.faq-block {
  margin-bottom: 1.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e3e3e3;
}
.faq-q {
  font-weight: bold;
  color: #246e2c;
  font-size: 1.08em;
  margin-bottom: 0.3rem;
}
.faq-a {
  color: #252525;
  margin-left: 0.1rem;
}