:root {
  --primary-color: #3A7D44;
  --accent-yellow: #F8B400;
  --accent-light-green: #A5D6A7;
  --accent-gray: #757575;
  --text-dark: #2c3e50;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

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

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

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

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

header .logo img {
  width: 40px;
  height: 40px;
}

header nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

header nav a:hover {
  color: var(--primary-color);
}

header nav a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

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

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

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

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

.section-intro {
  background-color: var(--bg-gray);
  padding: 3rem 2rem;
}

.section-intro h2 {
  margin-bottom: 1.5rem;
}

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

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

.two-column.reverse > div:first-child {
  order: 2;
}

.two-column.reverse > div:last-child {
  order: 1;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

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

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

.botanical-item {
  text-align: center;
}

.botanical-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.botanical-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-gray);
  border-radius: 8px;
  border-left: 4px solid var(--accent-yellow);
}

.timeline-marker {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(58, 125, 68, 0.3);
}

.cta-button-secondary {
  background: var(--accent-light-green);
  color: var(--text-dark);
  border: 2px solid var(--accent-light-green);
}

.cta-button-secondary:hover {
  background: transparent;
  color: var(--accent-light-green);
}

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

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

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

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

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

.footer-section a {
  color: rgba(255,255,255,0.8);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
  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.95rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: #2d6534;
}

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

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

.cookie-btn-more {
  background: var(--accent-yellow);
  color: var(--text-dark);
}

.cookie-btn-more:hover {
  background: #e6a500;
}

.disclaimer-box {
  background: var(--bg-gray);
  border-left: 4px solid var(--accent-yellow);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  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 2px rgba(58, 125, 68, 0.1);
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}

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

table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

table tr:hover {
  background: var(--bg-gray);
}

.faq-item {
  background: var(--bg-gray);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-left: 4px solid var(--accent-light-green);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-weight: bold;
}

.faq-answer {
  margin-top: 1rem;
  display: none;
  color: var(--text-dark);
  line-height: 1.8;
}

.faq-answer.show {
  display: block;
}

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

.reading-item {
  background: var(--bg-gray);
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.reading-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.reading-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--accent-gray);
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    height: 400px;
    margin-top: 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  header .navbar {
    padding: 0 1rem;
  }

  header nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-light);
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  header nav.show {
    display: flex;
  }

  header nav a {
    padding: 0.8rem 0;
    border: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  .two-column.reverse > div {
    order: unset;
  }

  .botanical-showcase {
    grid-template-columns: 1fr;
  }

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

  .cookie-buttons {
    flex-wrap: wrap;
  }

  section {
    padding: 2rem 1rem;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

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

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

  h2 {
    font-size: 1.3rem;
  }

  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

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

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  header nav {
    top: 50px;
  }

  .cookie-banner {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    padding: 0.6rem 1rem;
    width: 100%;
    text-align: center;
  }
}
