@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Karla:wght@400;500;700&display=swap');

:root {
  --primary-dark: #333333;
  --accent-teal: #20B2AA;
  --accent-linen: #FAF0E6;
  --accent-olive: #6B8E23;
  --text-primary: #333333;
  --text-light: #666666;
  --bg-light: #FFFFFF;
  --border-light: #E8E8E8;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Karla', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-light);
  font-size: 18px;
  line-height: 1.85;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 30px;
}

h2 {
  font-size: 40px;
  color: var(--accent-teal);
  margin-bottom: 25px;
  margin-top: 40px;
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

a:hover {
  color: var(--accent-olive);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-light);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

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

nav a:hover {
  color: var(--accent-teal);
}

main {
  margin-top: 80px;
  padding-top: 0;
}

.hero {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, var(--accent-linen) 0%, rgba(32, 178, 170, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 180px 20px;
}

.section-light {
  background-color: var(--bg-light);
}

.section-warm {
  background-color: var(--accent-linen);
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.card {
  padding: 30px;
  background-color: var(--bg-light);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(32, 178, 170, 0.1);
}

.card h3 {
  color: var(--accent-teal);
  margin-bottom: 15px;
}

.card p {
  color: var(--text-light);
}

.nutrients-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: var(--bg-light);
}

.nutrients-table th {
  background-color: var(--accent-teal);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.nutrients-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-light);
}

.nutrients-table tr:hover {
  background-color: rgba(32, 178, 170, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 8px rgba(32, 178, 170, 0.2);
}

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

.btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: var(--accent-teal);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.btn:hover {
  background-color: var(--accent-olive);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(32, 178, 170, 0.4);
}

.btn-secondary {
  background-color: var(--accent-olive);
  box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.btn-secondary:hover {
  background-color: var(--accent-teal);
  box-shadow: 0 6px 16px rgba(32, 178, 170, 0.4);
}

footer {
  background-color: var(--primary-dark);
  color: #CCCCCC;
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
}

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

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #CCCCCC;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-teal);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #999999;
}

.disclaimer {
  background-color: var(--accent-linen);
  border-left: 4px solid var(--accent-teal);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 4px;
}

.disclaimer p {
  margin: 0;
  color: var(--text-primary);
  font-size: 16px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: white;
  padding: 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.cookie-accept {
  background-color: var(--accent-teal);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--accent-olive);
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

.cookie-policy {
  background-color: transparent;
  color: var(--accent-teal);
  border: none;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.cookie-policy:hover {
  color: var(--accent-olive);
}

.faq-item {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 30px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.8;
}

.thank-you-container {
  text-align: center;
  padding: 100px 20px;
}

.thank-you-container h1 {
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-section {
  background-color: var(--accent-linen);
  padding: 100px 20px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 20px;
  }

  .hero {
    height: 400px;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
  }

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

  main {
    margin-top: 60px;
  }
}
