@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --brand-dark: #2F3F50;
  --brand-teal: #A7D9D3;
  --brand-yellow: #F0C808;
  --brand-light: #E4E4E4;
  --white: #ffffff;
  --text-main: #2F3F50;
  --text-muted: #5a6a7a;
  --text-light: #8a9aaa;
  --section-pad: 100px 0;
  --section-pad-sm: 60px 0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-dark);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

p { line-height: 1.75; color: var(--text-muted); }

a { color: var(--brand-dark); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--brand-teal); }

img { max-width: 100%; height: auto; display: block; }

ul { padding-left: 0; list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section-pad); }
.section--alt { background-color: #f7f9fb; }
.section--dark { background-color: var(--brand-dark); }
.section--sm { padding: var(--section-pad-sm); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-teal);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--brand-dark);
  text-balance: balance;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
}

.section-title--center, .section-intro--center { text-align: center; margin-left: auto; margin-right: auto; }

.divider-accent {
  width: 52px;
  height: 4px;
  background-color: var(--brand-yellow);
  border-radius: 2px;
  margin-bottom: 24px;
}

.divider-accent--center { margin-left: auto; margin-right: auto; }

.btn-primary-custom {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  background-color: var(--brand-dark);
  color: var(--white);
  border: 2px solid var(--brand-dark);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--brand-dark);
  box-shadow: 0 4px 18px rgba(47,63,80,0.12);
  text-decoration: none;
}

.btn-teal-custom {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  background-color: var(--brand-teal);
  color: var(--brand-dark);
  border: 2px solid var(--brand-teal);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-teal-custom:hover {
  background-color: transparent;
  color: var(--brand-teal);
  box-shadow: 0 4px 18px rgba(167,217,211,0.25);
  text-decoration: none;
}

.btn-outline-light-custom {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 30px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-outline-light-custom:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,255,255,0.08);
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(47, 63, 80, 0.97);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 16px rgba(47,63,80,0.18);
  transition: background-color 0.3s ease;
}

.site-header .navbar {
  padding: 0;
  min-height: 68px;
  align-items: center;
}

.site-header .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  padding: 0;
}

.site-header .navbar-brand span { color: var(--brand-teal); }

.site-header .navbar-brand:hover { color: var(--white); text-decoration: none; }

.site-header .navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s ease;
}

.site-header .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--brand-teal);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.site-header .navbar-nav .nav-link:hover { color: var(--white); }
.site-header .navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.site-header .navbar-nav .nav-link.active { color: var(--brand-teal); }
.site-header .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.site-header .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  padding: 6px 10px;
}

.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.page-wrapper { padding-top: 68px; }

.hero-section {
  min-height: 92vh;
  background-color: var(--brand-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,63,80,0.96) 40%, rgba(47,63,80,0.72) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-teal);
  display: block;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 700px;
}

.hero-title span { color: var(--brand-teal); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stat-bar {
  position: relative;
  z-index: 2;
  background-color: rgba(167,217,211,0.1);
  border-top: 1px solid rgba(167,217,211,0.2);
  padding: 28px 0;
}

.hero-stat { text-align: center; }

.hero-stat__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse .two-col__media { order: 2; }
.two-col--reverse .two-col__content { order: 1; }

.two-col__media { border-radius: 12px; overflow: hidden; position: relative; }
.two-col__media img { width: 100%; height: 400px; object-fit: cover; display: block; transition: transform 0.55s ease; }
.two-col__media:hover img { transform: scale(1.03); }

.two-col__accent {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--brand-yellow);
  border-radius: 50%;
  opacity: 0.25;
  bottom: -24px;
  right: -24px;
  z-index: -1;
}

.two-col__list { margin-top: 20px; }
.two-col__list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--brand-light);
}

.two-col__list li:last-child { border-bottom: none; }

.two-col__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--brand-teal);
  border-radius: 50%;
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.info-card {
  background-color: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: 10px;
  padding: 32px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(47,63,80,0.1);
  transform: translateY(-4px);
}

.info-card--alt { background-color: #f7f9fb; }

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.info-card__icon--teal { background-color: rgba(167,217,211,0.2); }
.info-card__icon--yellow { background-color: rgba(240,200,8,0.15); }

.info-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-dark);
}

.info-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.nutrient-table-wrap {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--brand-light);
  box-shadow: 0 4px 24px rgba(47,63,80,0.06);
}

.nutrient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.nutrient-table thead {
  background-color: var(--brand-dark);
  color: var(--white);
}

.nutrient-table thead th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
}

.nutrient-table tbody tr { border-bottom: 1px solid var(--brand-light); transition: background-color 0.2s ease; }
.nutrient-table tbody tr:hover { background-color: rgba(167,217,211,0.08); }
.nutrient-table tbody tr:last-child { border-bottom: none; }
.nutrient-table tbody td { padding: 15px 20px; color: var(--text-muted); vertical-align: top; }
.nutrient-table tbody td:first-child { font-weight: 600; color: var(--brand-dark); font-family: 'Montserrat', sans-serif; }

.tag-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: rgba(167,217,211,0.2);
  color: var(--brand-dark);
  margin: 2px;
}

.glossary-list { display: grid; gap: 16px; }

.glossary-item {
  background-color: var(--white);
  border-left: 4px solid var(--brand-teal);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 10px rgba(47,63,80,0.05);
}

.glossary-item__term {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.glossary-item__def {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background-color: var(--brand-dark);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 32px;
}

.educational-notice {
  background-color: rgba(167,217,211,0.12);
  border: 1px solid rgba(167,217,211,0.35);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 24px;
}

.educational-notice p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.educational-notice strong { color: var(--brand-dark); }

.site-footer {
  background-color: #1e2d3c;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand span { color: var(--brand-teal); }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-edu-note {
  font-size: 0.8rem;
  color: var(--brand-teal);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: block;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.22s ease;
}
.footer-links a:hover { color: var(--brand-teal); text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  fill: var(--brand-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--brand-teal); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #1a2733;
  border-top: 3px solid var(--brand-teal);
  padding: 22px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
  line-height: 1.6;
  min-width: 240px;
}

.cookie-banner__text strong { color: var(--white); }

.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
}

.cookie-btn--accept { background-color: var(--brand-teal); color: var(--brand-dark); }
.cookie-btn--accept:hover { background-color: #8fcfc8; }
.cookie-btn--decline { background-color: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.cookie-btn--decline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cookie-btn--learn { background-color: transparent; color: var(--brand-teal); border-color: var(--brand-teal); font-size: 0.75rem; }
.cookie-btn--learn:hover { background-color: rgba(167,217,211,0.1); }

.page-hero {
  background-color: var(--brand-dark);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
}

.page-hero .section-label { justify-content: center; display: flex; }

.prose-content h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.prose-content h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.prose-content p { margin-bottom: 16px; }

.prose-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose-content ul li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 6px;
}

.info-box {
  background-color: rgba(167,217,211,0.12);
  border-left: 4px solid var(--brand-teal);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.info-box p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.info-box strong { color: var(--brand-dark); }

.disclaimer-box {
  background-color: rgba(240,200,8,0.08);
  border: 1px solid rgba(240,200,8,0.3);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 32px 0;
}

.disclaimer-box h3 {
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.disclaimer-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.faq-item {
  border-bottom: 1px solid var(--brand-light);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.22s ease;
}

.faq-question:hover { color: var(--brand-teal); }

.faq-question__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.22s ease, transform 0.3s ease;
}

.faq-question__icon svg { fill: var(--white); width: 10px; height: 10px; }
.faq-question.open .faq-question__icon { background-color: var(--brand-teal); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer__inner {
  padding: 0 0 22px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-block { }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(167,217,211,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg { width: 20px; height: 20px; fill: var(--brand-teal); }

.contact-item__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 0.95rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.contact-form-box {
  background-color: var(--white);
  border: 1px solid var(--brand-light);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 6px 30px rgba(47,63,80,0.07);
}

.form-label-custom {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--brand-light);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--brand-dark);
  background-color: #fafafa;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(167,217,211,0.2);
  background-color: var(--white);
}

.form-group-custom { margin-bottom: 22px; }

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-top: 16px;
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(167,217,211,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg { width: 36px; height: 36px; fill: var(--brand-teal); }

.about-mission-box {
  background-color: var(--brand-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 48px 44px;
  margin-bottom: 48px;
}

.about-mission-box h2 { color: var(--white); margin-bottom: 16px; }
.about-mission-box p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

.value-card {
  border: 1px solid var(--brand-light);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.value-card:hover { box-shadow: 0 8px 28px rgba(47,63,80,0.09); transform: translateY(-3px); }

.value-card__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-teal);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.value-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.value-card__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 44px;
  margin-bottom: 14px;
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-content p, .policy-content li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-content ul { padding-left: 22px; list-style: disc; }
.policy-content ul li { padding-left: 4px; }

.geo-note {
  background-color: rgba(47,63,80,0.04);
  border: 1px solid var(--brand-light);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.separator-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-light), transparent);
  margin: 0;
}

.highlight-band {
  background-color: var(--brand-teal);
  padding: 32px 0;
}

.highlight-band p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

.mens-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.mens-photo-grid__main {
  grid-row: 1 / 3;
  border-radius: 10px;
  overflow: hidden;
}

.mens-photo-grid__main img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

.mens-photo-grid__side {
  border-radius: 10px;
  overflow: hidden;
}

.mens-photo-grid__side img { width: 100%; height: 190px; object-fit: cover; }

@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col--reverse .two-col__media { order: unset; }
  .two-col--reverse .two-col__content { order: unset; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mens-photo-grid { grid-template-columns: 1fr; }
  .mens-photo-grid__main { grid-row: unset; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 60px 0; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .hero-stat-bar .row { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .two-col__media img { height: 280px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .about-mission-box { padding: 32px 24px; }
  .contact-form-box { padding: 28px 22px; }
  .hero-section { min-height: 80vh; }
  .nutrient-table { font-size: 0.82rem; }
  .nutrient-table thead th, .nutrient-table tbody td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .section { padding: 44px 0; }
  .card-grid--4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; text-align: center; }
  .footer-bottom-links { gap: 12px; }
}
