:root {
  --sage-green: #A8B5A2;
  --warm-taupe: #BFAF92;
  --soft-slate-blue: #8A9BB5;
  --muted-coral: #D9A7A0;
  --off-white: #FDFCF9;
  --pale-sage: #F0F4EE;
  --text-dark: #2C2C2C;
  --text-light: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', 'Source Sans Pro', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--off-white);
}

h1 {
  font-family: 'Proxima Nova', 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Open Sans', 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Open Sans', 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--sage-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--warm-taupe);
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 181, 162, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--sage-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 32px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
  font-size: 16px;
}

nav a:hover {
  color: var(--sage-green);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5rem;
}

section {
  padding: 4rem 0;
}

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-ingredients.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  max-width: 700px;
  z-index: 2;
}

.hero h1 {
  color: white;
  font-size: 64px;
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
}

.arrow-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  animation: bounce 2s infinite;
  color: white;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.section-full-bleed {
  background-color: var(--pale-sage);
  padding: 4rem 0;
}

.section-full-bleed:nth-child(even) {
  background-color: var(--off-white);
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.content-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin: 2rem 0;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card h3 {
  color: var(--sage-green);
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

.card-icon {
  font-size: 48px;
  color: var(--warm-taupe);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 12px;
  background-color: var(--muted-coral);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.3);
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #C7898F;
}

.btn-primary {
  background-color: var(--muted-coral);
}

.btn-secondary {
  background-color: var(--sage-green);
}

.btn-secondary:hover {
  background-color: #96A390;
}

.accordion {
  margin: 1rem 0;
}

.accordion-item {
  background-color: white;
  border: 1px solid rgba(168, 181, 162, 0.2);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1.2rem;
  background-color: var(--off-white);
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--pale-sage);
}

.accordion-icon {
  font-size: 20px;
  transition: transform 0.4s ease;
  color: var(--sage-green);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.2rem;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 1.2rem;
}

.accordion-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: var(--sage-green);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid rgba(168, 181, 162, 0.1);
}

tbody tr:nth-child(even) {
  background-color: rgba(168, 181, 162, 0.05);
}

tbody tr:hover {
  background-color: rgba(168, 181, 162, 0.1);
}

.myth-container {
  background-color: white;
  padding: 1.5rem;
  border-left: 4px solid var(--muted-coral);
  margin: 1.5rem 0;
  border-radius: 4px;
}

.myth-title {
  font-weight: 700;
  color: var(--muted-coral);
  margin-bottom: 0.5rem;
  font-size: 16px;
}

.myth-description {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.myth-fact {
  color: var(--sage-green);
  font-weight: 600;
  font-size: 15px;
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--warm-taupe);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--warm-taupe);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--sage-green);
  max-height: 200px;
  overflow-y: auto;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--sage-green);
  color: white;
}

.cookie-accept:hover {
  background-color: #96A390;
}

.cookie-reject {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.cookie-learn {
  background-color: transparent;
  color: var(--warm-taupe);
  border: 1px solid var(--warm-taupe);
  padding: 8px 16px;
}

.cookie-learn:hover {
  background-color: rgba(191, 175, 146, 0.1);
}

.disclaimer-box {
  background-color: #FFF8F3;
  border-left: 4px solid var(--muted-coral);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-title {
  font-weight: 700;
  color: var(--muted-coral);
  margin-bottom: 0.5rem;
}

.disclaimer-text {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.65;
}

.form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 16px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(168, 181, 162, 0.3);
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(168, 181, 162, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.cta-block {
  text-align: center;
  padding: 2rem;
  background-color: var(--pale-sage);
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-block h3 {
  margin-top: 0;
  color: var(--text-dark);
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-link {
  padding: 10px 20px;
  background-color: var(--sage-green);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.cta-link:hover {
  background-color: #96A390;
  transform: translateY(-2px);
}

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-message h1 {
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0;
  color: var(--sage-green);
  margin-bottom: 0.8rem;
  font-size: 18px;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--muted-coral);
  font-weight: 600;
  font-size: 14px;
}

.about-intro {
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .container, nav {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .hero {
    min-height: 350px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-block.reverse {
    direction: ltr;
  }

  nav ul {
    gap: 1rem;
    font-size: 14px;
  }

  nav a {
    font-size: 14px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    padding: 0 1.5rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  section {
    padding: 2rem 0;
  }

  .card {
    padding: 1.5rem;
  }

  body {
    font-size: 16px;
  }

  .about-intro {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container, nav {
    padding: 0 1rem;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
  }

  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .accordion-header {
    padding: 0.8rem;
    font-size: 14px;
  }

  .accordion-icon {
    font-size: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  section {
    padding: 1.5rem 0;
  }
}
