/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 74:0 Unexpected "<"
Line 173:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.key-benefits-wrapper {
  background-color: #F5F4F0;
  padding: 64px 20px;
  margin: 20px auto;
}

.key-benefits-grid {
  background-color: #F5F4F0;
  /* max-width: 800px; */
  /* margin: 0 auto; */
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.benefit-card {
  background-color: #F5F4F0;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 16px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #ffa636;
}

.benefit-heading {
  font-size: 20px;
  font-weight: 600;
  color: #292929;
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.6;
  color: #292929;
  /* text-align: left; */
}

/* Responsive layout */
@media screen and (max-width: 1024px) {
  .benefit-card {
    flex: 1 1 100%;
  }
}
</style>
<style>
.science-ingredients-section {
  background-color: #F5F4F0;
  width: 100vw;
}

.science-ingredients-bg {
  background-color: #F5F4F0;
  color: #292929;
  width: 100%;
  font-family: "lato", Helvetica, sans-serif;
}

.science-ingredients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: #F5F4F0;
}

.science-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #797d3b;
}

.science-description {
  font-size: 16px;
  font-family: "lato", Helvetica, sans-serif;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.7;
  color: #797d3b;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.ingredient-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.ingredient-card:hover {
  transform: translateY(-4px);
}

.ingredient-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px auto;
  object-fit: contain;
}

.ingredient-name {
  font-size: 20px;
  font-weight: 600;
  color: #797d3b;
  margin-bottom: 10px;
}

.ingredient-description {
  font-size: 15px;
  color: #292929;
  line-height: 1.6;
}

.science-cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffa636;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.science-cta-button:hover {
  background-color: #797d3b;
}
</style>