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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f9fbe7;
  color: #558b2f;
  line-height: 1.8;
  font-size: 18px;
}

:root {
  --primary-bg: #f9fbe7;
  --primary-text: #558b2f;
  --accent-light: #f0f4c3;
  --accent-medium: #9ccc65;
  --accent-dark: #558b2f;
  --white: #ffffff;
  --shadow-light: 0 2px 5px rgba(85, 139, 47, 0.08);
  --shadow-hover: 0 9px 24px rgba(85, 139, 47, 0.15);
  --transition-fast: 0.28s ease-out;
  --transition-medium: 0.34s ease-out;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 1px 5px rgba(85, 139, 47, 0.08);
  transition: all 0.28s ease-out;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(85, 139, 47, 0.12);
}

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

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #558b2f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

nav a {
  color: #558b2f;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  margin-left: 30px;
  transition: color 0.28s ease-out;
  text-transform: capitalize;
}

nav a:hover {
  color: #9ccc65;
}

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

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }

  nav a {
    margin-left: 15px;
    font-size: 14px;
  }
}

section {
  padding: 130px 0;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 30px;
  color: #558b2f;
}

h2 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #558b2f;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #558b2f;
}

p {
  max-width: 720px;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.grid-2.reverse {
  grid-template-columns: 1fr 65%;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-2.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: all 0.34s ease-out;
}

.image-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.34s ease-out;
}

.image-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.04);
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #f9fbe7;
  color: #558b2f;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: all 0.28s ease-out;
  border-bottom: 2px solid transparent;
  text-transform: capitalize;
}

.button:hover {
  color: #558b2f;
  border-bottom: 2px solid #558b2f;
  filter: brightness(0.95);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-light);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: #9ccc65;
  color: #ffffff;
  padding: 18px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

td {
  padding: 16px 18px;
  border-bottom: 1px solid #f0f4c3;
  color: #558b2f;
}

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

tr:hover {
  background-color: #f9fbe7;
}

.faq {
  margin: 30px 0;
}

.faq-item {
  background-color: #ffffff;
  border-left: 4px solid #9ccc65;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  box-shadow: var(--shadow-light);
  cursor: pointer;
  transition: all 0.28s ease-out;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #558b2f;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .answer {
  display: none;
  margin-top: 15px;
  color: #558b2f;
  line-height: 1.8;
}

.faq-item.open .answer {
  display: block;
}

.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #f9fbe7 0%, #f0f4c3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: #558b2f;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.disclaimer {
  background-color: #f0f4c3;
  border-left: 4px solid #9ccc65;
  padding: 25px;
  margin: 40px 0;
  border-radius: 4px;
  line-height: 1.8;
}

.disclaimer h3 {
  margin-top: 0;
  font-size: 20px;
}

form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  max-width: 600px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #9ccc65;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #558b2f;
  background-color: #f9fbe7;
  transition: all 0.28s ease-out;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #558b2f;
  box-shadow: 0 0 0 3px rgba(156, 204, 101, 0.1);
}

form button {
  background-color: #9ccc65;
  color: #ffffff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.28s ease-out;
  text-transform: capitalize;
}

form button:hover {
  background-color: #558b2f;
  transform: scale(1.02);
}

footer {
  background-color: #558b2f;
  color: #ffffff;
  padding: 50px 0;
  margin-top: 100px;
  text-align: center;
  font-size: 14px;
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 20px;
  transition: color 0.28s ease-out;
  font-weight: 500;
  cursor: pointer;
}

.footer-links a:hover {
  color: #9ccc65;
  text-decoration: underline;
}

.footer-info {
  margin: 20px 0;
  line-height: 1.8;
}

.footer-info p {
  margin: 8px 0;
}

.footer-copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

.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-y: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  color: #558b2f;
  line-height: 1.8;
}

.modal-close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  color: #9ccc65;
  cursor: pointer;
  transition: color 0.28s ease-out;
}

.modal-close:hover {
  color: #558b2f;
}

.modal h2 {
  margin-top: 0;
  color: #558b2f;
  font-size: 32px;
}

.modal p {
  margin: 15px 0;
}

.modal ol,
.modal ul {
  margin: 15px 0 15px 30px;
}

.modal li {
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #558b2f;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  z-index: 999;
  display: none;
}

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

.cookie-banner p {
  margin: 0 0 20px 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cookie-accept {
  background-color: #9ccc65;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #7db23f;
}

.cookie-decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

.cookie-more {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

.info-message {
  background-color: #9ccc65;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  animation: slideUp 0.3s ease-out;
}

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

.wide-image {
  position: relative;
  margin: 50px 0;
}

.wide-image img {
  width: 100%;
  height: auto;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  text-align: center;
  max-width: 50%;
  border-radius: 8px;
}

.overlay-text p {
  max-width: 100%;
}

.list-item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #9ccc65;
  border-radius: 4px;
  box-shadow: var(--shadow-light);
  transition: all 0.28s ease-out;
}

.list-item:hover {
  box-shadow: var(--shadow-hover);
}

.list-item h4 {
  margin-top: 0;
  font-size: 18px;
  color: #558b2f;
}

.list-item p {
  margin: 10px 0;
}

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

.plant-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all 0.34s ease-out;
  display: flex;
  flex-direction: column;
}

.plant-card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.04);
}

.plant-card h4 {
  font-size: 20px;
  color: #558b2f;
  margin-top: 15px;
}

.plant-card p {
  flex-grow: 1;
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.8;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.comparison-column h3 {
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #9ccc65;
}

.comparison-column ul {
  list-style: none;
  padding: 0;
}

.comparison-column li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f4c3;
  color: #558b2f;
}

.comparison-column li:before {
  content: '✓ ';
  color: #9ccc65;
  font-weight: bold;
  margin-right: 10px;
}

.read-more-link {
  color: #9ccc65;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.28s ease-out;
}

.read-more-link:hover {
  color: #558b2f;
  text-decoration: underline;
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

  .hero {
    height: 400px;
  }

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

  nav a {
    margin-left: 10px;
  }
}
