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

:root {
  --primary-color: #2E8B57;
  --accent-khaki: #F0E68C;
  --accent-blue: #B0C4DE;
  --accent-green: #8FBC8F;
  --text-dark: #333333;
  --text-light: #666666;
  --border-light: #E8E8E8;
  --white: #FFFFFF;
  --bg-light: #F9F9F9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: var(--text-light);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  gap: 0.5rem;
}

.navbar-logo img {
  height: 40px;
  width: 40px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.nav-links a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

main {
  margin-top: 80px;
  padding-bottom: 4rem;
}

.section {
  padding: 4rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-alt {
  background-color: var(--bg-light);
  padding: 4rem 2rem;
}

.hero-section {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(240, 230, 140, 0.05) 100%);
  padding: 6rem 2rem;
  margin-top: 80px;
}

.hero-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-container {
  max-width: 1300px;
  margin: 0 auto;
}

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

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-khaki);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
}

.ingredient-card {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(176, 196, 222, 0.05) 100%);
  border: 2px solid var(--accent-green);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.ingredient-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

thead {
  background-color: var(--primary-color);
  color: var(--white);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border-light);
}

td {
  padding: 1rem;
  border: 1px solid var(--border-light);
  color: var(--text-light);
}

tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}

tbody tr:hover {
  background-color: rgba(46, 139, 87, 0.05);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent-khaki);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

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

.btn-primary:hover {
  background-color: #1f5a3f;
}

.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -12px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--white);
}

.disclaimer-box {
  background-color: rgba(176, 196, 222, 0.1);
  border-left: 4px solid var(--accent-blue);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box h4 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.disclaimer-box p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.qa-section {
  margin: 3rem 0;
}

.qa-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-khaki);
}

.qa-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  cursor: pointer;
  user-select: none;
}

.qa-answer {
  color: var(--text-light);
  line-height: 1.7;
}

footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-khaki);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-khaki);
  text-decoration: underline;
}

.footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.contact-form {
  max-width: 600px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--primary-color);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: #1f5a3f;
}

.cookie-btn-decline {
  background-color: var(--border-light);
  color: var(--text-dark);
}

.cookie-btn-decline:hover {
  background-color: #d0d0d0;
}

.cookie-btn-more {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-btn-more:hover {
  background-color: rgba(46, 139, 87, 0.1);
}

.educational-note {
  background-color: rgba(46, 139, 87, 0.05);
  border: 1px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}

.educational-note p {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-content,
  .two-column,
  .three-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .hero-section {
    padding: 3rem 1rem;
    margin-top: 100px;
  }

  p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    font-size: 1.2rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  h1 {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
  }

  h2 {
    font-size: 1.2rem;
  }

  .three-column {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 1.5rem 1rem;
  }
}
