:root {
  --primary: #2C3E2F;
  --accent-beige: #EADBC8;
  --accent-teal: #5F7A5D;
  --accent-moss: #9FB68F;
  --white: #FFFFFF;
  --dark: #1a1a1a;
  --light-gray: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Lora', serif;
  font-size: 17.5px;
  line-height: 1.68;
  color: var(--dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Futura', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

nav a {
  font-family: 'Futura', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 100px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 100px;
}

.hero {
  width: 100vw;
  height: 600px;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, rgba(44,62,47,0.85) 0%, rgba(95,122,93,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--accent-beige);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 96px 0;
  border-bottom: 1px solid #f0f0f0;
}

section.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: 100px;
  padding-right: 100px;
}

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

.section-container {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.section-container.two-col {
  grid-template-columns: 1fr 1fr;
}

.section-text {
  flex: 1;
}

.section-image {
  flex: 1;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comparison-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  text-align: left;
  font-family: 'Futura', sans-serif;
  font-weight: 600;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:hover {
  background-color: rgba(44,62,47,0.02);
}

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

.plant-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.plant-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: var(--accent-teal);
}

.plant-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.plant-card-content {
  padding: 2rem;
}

.plant-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.plant-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.9rem;
}

.meta-item {
  padding: 0.5rem 0;
  border-top: 1px solid #e0e0e0;
}

.meta-label {
  font-weight: 600;
  color: var(--primary);
  font-family: 'Futura', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.25rem;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--light-gray);
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.25s ease;
}

.faq-question:hover {
  background-color: #e8e8e8;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--white);
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
}

.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Futura', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button-primary {
  background-color: var(--primary);
  color: var(--accent-beige);
}

.button-primary:hover {
  background-color: #1f2f22;
  box-shadow: 0 6px 16px rgba(44,62,47,0.3);
}

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

.button-secondary:hover {
  background-color: var(--accent-teal);
  color: var(--white);
}

footer {
  background-color: var(--primary);
  color: var(--accent-beige);
  padding: 4rem 2rem;
  margin-top: 96px;
}

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

.footer-section h3 {
  color: var(--accent-beige);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--accent-beige);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-divider {
  border-top: 1px solid rgba(234,219,200,0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-disclaimer {
  text-align: center;
  font-style: italic;
  margin-top: 1rem;
  color: var(--accent-beige);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(95,122,93,0.1);
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--white);
  padding: 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-teal);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

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

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

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

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

.cookie-learn {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

.disclaimer-block {
  background-color: #f9f9f9;
  border-left: 4px solid var(--accent-teal);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-block h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.disclaimer-block p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.disclaimer-block ul {
  margin-left: 1.5rem;
  color: #666;
}

.disclaimer-block li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

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

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    display: block;
    padding: 0.5rem 0;
  }

  main {
    padding: 0 1.5rem;
    margin-top: 150px;
  }

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

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

  section {
    padding: 48px 0;
  }

  section.full-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-container.two-col {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .cookie-buttons button {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  main {
    padding: 0 1rem;
  }

  section.full-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  nav ul {
    gap: 0.25rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  .card-meta {
    grid-template-columns: 1fr;
  }

  .footer-section {
    font-size: 0.9rem;
  }
}
