:root{
  --nzu-green:#00515E;
  --nzu-green-dark:#1f4d0f;
  --nzu-orange:#e14b1d;
  --nzu-orange-hover:#f54c18;
  --nzu-ink:#111111;
  --nzu-muted:#4a4a4a;
  --nzu-bg-light:#f7f7f7;
}

/* ---------- Page Hero (used on /about and /ingredients) ---------- */

.hero-page-main{
    background: linear-gradient(90deg, #00515E 0%, #00515E 100%);
    display: flex;
    justify-content: center;
}
.page-hero{
display: grid;
grid-template-columns: 2fr 1fr;
max-width: 1100px;
  padding:60px 20px 50px;
}
.hero-content{
  color:#fff;
}
.hero-img img{
    width: 100%;
}
.page-hero h1{
    color:#fff;
  font-size:44px;
  font-weight:700;
  margin-bottom:14px;
  line-height:1.15;
}
.page-hero p{
    color:#fff;
  font-size:20px;
  max-width:760px;
  margin:0;
  opacity:.95;
}
.breadcrumb{
  font-size:15px;
  opacity:.9;
  margin-top:16px;
}
.breadcrumb a{ text-decoration:underline; }
.breadcrumb a:hover{ opacity:.85; }

@media (max-width:768px){
  .page-hero{ padding:44px 18px 36px; }
  .page-hero h1{ font-size:30px; }
  .page-hero p{ font-size:17px; }
}


.page-hero-legel{
  background: linear-gradient(90deg, #00515E 0%, #00515E 100%);
  color:#fff;
  text-align:center;
  padding:60px 20px 50px;
}
.page-hero-legel h1{
  font-size:44px;
  font-weight:700;
  margin-bottom:14px;
  line-height:1.15;
}
.page-hero-legel p{
  font-size:20px;
  max-width:760px;
  margin:0 auto;
  opacity:.95;
}
.breadcrumb-legel{
  font-size:15px;
  opacity:.9;
  margin-top:16px;
}
.breadcrumb-legel a{ text-decoration:underline; }
.breadcrumb-legel a:hover{ opacity:.85; }
 
@media (max-width:768px){
  .page-hero-legel{ padding:44px 18px 36px; }
  .page-hero-legel h1{ font-size:30px; }
  .page-hero-legel p{ font-size:17px; }
}

/* ---------- Generic section wrapper for long-form copy ---------- */
.content-section{
  padding:40px 20px;
  background:#fff;
  box-sizing:border-box;
}
.content-section.bg-light{ background:var(--nzu-bg-light); }
.section-wrap{
  max-width:1080px;
  margin:0 auto;
}
.section-wrap h2{
  font-size:30px;
  font-weight:700;
  color:#000;
  margin-bottom:20px;
}
.section-wrap h3{
  font-size:24px;
  font-weight:700;
  color:#191919;
}
.section-wrap p{
  font-size:21px;
  line-height:1.65;
  color:#161616;
  margin-bottom:18px;
}
@media (max-width:640px){
  .section-wrap h2{ font-size:28px; }
  .section-wrap h3{ font-size:21px; }
  .section-wrap p{ font-size:18px; }
}

/* ---------- Table of contents ---------- */
.toc-box{
  background:var(--nzu-bg-light);
  border:1px solid #e6e6e6;
  border-radius:12px;
  padding:22px 26px;
  margin:0 0 30px;
}
.toc-box p{
  font-weight:700;
  font-size:19px;
  margin-bottom:10px !important;
  color:#111;
}
.toc-box ul{ list-style:none; padding:0; margin:0; }
.toc-box li{ margin-bottom:8px; font-size:17px; }
.toc-box a{ color:#0056b3; }
.toc-box a:hover{ text-decoration:underline; }

/* ---------- Reviewer / info callout ---------- */
.reviewer-box{
  font-size:17px;
  color:#1a1a1a;
  background:#eef6ea;
  border-left:4px solid var(--nzu-green);
  padding:16px 20px;
  border-radius:6px;
  margin:22px 0;
}

/* ---------- Warning / clarification callout ---------- */
.callout-note{
  background:#fff7e6;
  border-left:4px solid #e0a100;
  padding:18px 20px;
  border-radius:6px;
  font-size:18px;
  line-height:1.55;
  margin:26px 0;
}

/* ---------- Author / customer care box ---------- */
.author-box{
  display:flex;
  gap:20px;
  align-items:flex-start;
  background:var(--nzu-bg-light);
  border-radius:12px;
  padding:24px;
  margin:32px 0;
}
.author-box img{
  width:68px;
  height:68px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.author-box h3{
  font-size:20px;
  margin:0 0 6px;
  color:#111;
}
.author-box p{
  font-size:17px;
  margin:0;
  color:#333;
  line-height:1.6;
}
.author-credentials{
  display:block;
  font-size:14px;
  font-weight:700;
  color:var(--nzu-green);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.4px;
}
@media (max-width:560px){
  .author-box{ flex-direction:column; align-items:center; text-align:center; }
}

/* ---------- Reusable numbered / plain lists for long-form pages ---------- */
.check-list{ list-style:none; padding:0; margin:0 0 25px; }
.check-list li{
  position:relative;
  margin-bottom:14px;
  padding-left:32px;
  font-size:20px;
  line-height:1.55;
  color:#161616;
}
.check-list li::before{
  content:"\2713";
  position:absolute;
  left:0;
  top:0;
  color:#01aa01;
  font-size:22px;
  font-weight:700;
}

.research-list{ list-style:none; padding:0; margin:0 0 10px; }
.research-list li{
  font-size:17px;
  line-height:1.6;
  margin-bottom:8px;
  color:#333;
}

/* ---------- Meta / attribution bar ---------- */
.meta-bar{
  display:flex;
  flex-wrap:wrap;
  gap:16px 24px;
  align-items:center;
  font-size:15px;
  color:#555;
  border-top:1px solid #e7e7e7;
  border-bottom:1px solid #e7e7e7;
  padding:14px 0;
  margin:18px 0 30px;
}
.meta-bar strong{ color:#222; }

/* ---------- Ingredient profile cards (for /ingredients) ---------- */
.ingredient-profile{
  display:flex;
  gap:22px;
  align-items:flex-start;
  padding:26px 0;
  border-bottom:1px solid #ececec;
}
.ingredient-profile:last-of-type{ border-bottom:none; }
.ingredient-num{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background-color:#23a550;
  color:#fff;
  border-radius:50%;
  width:44px;
  height:44px;
  font-size:20px;
  font-weight:700;
  margin-top:4px;
}
.ingredient-copy h3{
  font-size:24px;
  font-weight:700;
  color:#111;
  margin-bottom:8px;
}
.ingredient-copy p{
  font-size:19px;
  line-height:1.6;
  color:#181818;
  margin-bottom:10px;
}
.ingredient-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.ingredient-tags span{
  background:#eef6ea;
  color:#2c6b12;
  font-size:14px;
  font-weight:600;
  padding:6px 12px;
  border-radius:20px;
}
@media (max-width:600px){
  .ingredient-profile{ flex-direction:column; }
  .ingredient-copy h3{ font-size:22px; }
  .ingredient-copy p{ font-size:17px; }
}

/* ---------- Simple two-column feature grid for /about ---------- */
.feature-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin:24px 0 10px;
}
.feature-grid-2 .feature-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:12px;
  padding:22px;
}
.feature-grid-2 .feature-card h3{
  font-size:20px;
  margin-bottom:8px;
  color:#111;
}
.feature-grid-2 .feature-card p{
  font-size:17px;
  color:#333;
  line-height:1.6;
  margin:0;
}
@media (max-width:700px){
  .feature-grid-2{ grid-template-columns:1fr; }
  .page-hero{grid-template-columns: 1fr;}
}