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

:root {
  --primary-light: #e8f5e9;
  --accent-green: #66bb6a;
  --dark-green: #2e7d32;
  --white: #ffffff;
  --very-light: #f1f8e9;
  --text-dark: #2e7d32;
  --shadow-soft: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 20px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Proxima Nova', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.78;
  letter-spacing: -0.3px;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: var(--text-dark);
  margin-bottom: 30px;
  max-width: 100%;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.7px;
  color: var(--text-dark);
  margin-bottom: 25px;
  margin-top: 40px;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  padding: 20px 0;
  transition: box-shadow 0.3s ease-in-out;
}

header.scrolled {
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  background-color: rgba(255,255,255,0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 76px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-green);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

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

.nav-links a:hover {
  color: var(--accent-green);
}

body {
  padding-top: 75px;
}

section {
  padding: 160px 76px;
}

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

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  position: relative;
  padding: 140px 76px;
  text-align: center;
  color: var(--text-dark);
  overflow: hidden;
}

.hero img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 8px;
}

.hero-text {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.6px;
  margin: 20px 0;
}

section img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  display: block;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse > * {
  direction: ltr;
}

.grid-2 img {
  width: 100%;
  height: auto;
}

.full-width-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin: 40px 0;
  border-radius: 8px;
}

.content-text {
  max-width: 720px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

th, td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  background-color: var(--primary-light);
  font-weight: 600;
  color: var(--text-dark);
}

tr:last-child td {
  border-bottom: none;
}

ul, ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.plant-card {
  background-color: var(--very-light);
  padding: 35px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-green);
}

.plant-card h3 {
  margin-top: 0;
  color: var(--dark-green);
}

.btn {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: #4caf50;
  box-shadow: 0 0 12px rgba(102,187,106,0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.btn-secondary:hover {
  background-color: var(--very-light);
  box-shadow: 0 0 12px rgba(102,187,106,0.2);
}

.accordion {
  margin: 20px 0;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 12px;
  background-color: var(--white);
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  background-color: var(--primary-light);
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #d4edda;
}

.accordion-header.active {
  background-color: var(--accent-green);
  color: var(--white);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 20px;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 20px;
}

.accordion-icon {
  transition: transform 0.3s;
  font-size: 20px;
}

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

.disclaimer {
  background-color: var(--primary-light);
  padding: 40px;
  border-left: 4px solid var(--accent-green);
  border-radius: 4px;
  margin: 60px 0;
  line-height: 1.6;
}

.disclaimer h2 {
  margin-top: 0;
  color: var(--dark-green);
}

.disclaimer p {
  margin-bottom: 15px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 8px rgba(102,187,106,0.2);
}

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

.form-disclaimer {
  background-color: #fff3cd;
  padding: 16px;
  border-left: 3px solid #ffc107;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 24px;
  border-top: 1px solid #e0e0e0;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

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

.cookie-text {
  flex: 1;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

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

.cookie-accept:hover {
  background-color: #4caf50;
}

.cookie-decline {
  background-color: #e0e0e0;
  color: var(--text-dark);
}

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

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

.cookie-more:hover {
  background-color: var(--very-light);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  overflow: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.modal-header h2 {
  margin: 0;
  color: var(--dark-green);
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-dark);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--accent-green);
}

.modal-body {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

.modal-body h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark-green);
  font-size: 22px;
}

.modal-body p {
  margin-bottom: 15px;
}

.modal-body ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.modal-body li {
  margin-bottom: 8px;
}

footer {
  background-color: var(--primary-light);
  padding: 60px 76px;
  margin-top: 120px;
  border-top: 1px solid #d0d0d0;
}

.footer-container {
  max-width: 1540px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 600;
}

.footer-section a {
  display: block;
  color: var(--text-dark);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

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

.footer-info {
  line-height: 1.8;
  font-size: 16px;
}

.footer-divider {
  border-top: 1px solid #d0d0d0;
  padding-top: 30px;
  margin-bottom: 30px;
}

.footer-bottom {
  text-align: center;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.info-message {
  background-color: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 20px;
  border-radius: 4px;
  margin: 40px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

.reading-list {
  background-color: var(--very-light);
  padding: 40px;
  border-radius: 8px;
  margin: 60px 0;
}

.reading-list h3 {
  margin-top: 0;
  color: var(--dark-green);
}

.reading-list a {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.reading-list a:hover {
  color: #4caf50;
}

.vertical-spacing-lg {
  margin-bottom: 100px;
}

.vertical-spacing-md {
  margin-bottom: 60px;
}

.text-muted {
  color: #666;
  font-size: 16px;
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  section {
    padding: 80px 28px;
  }

  .header-container {
    padding: 0 28px;
  }

  .nav-links {
    gap: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-content {
    padding: 0 28px;
  }

  .cookie-content {
    padding: 0 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .modal-content {
    margin: 10% auto;
    padding: 20px;
  }

  body {
    font-size: 16px;
  }
}
