/* CSS Variables for consistent theming */
:root {
  --primary-color: #2d7738;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary-color: #7cb342;
  --accent-color: #ffeb3b;
  --accent-dark: #fbc02d;
  --earth-color: #8d6e63;
  --earth-light: #a1887f;
  --earth-dark: #5d4037;
  
  --text-primary: #2e2e2e;
  --text-secondary: #666666;
  --text-light: #888888;
  --text-white: #ffffff;
  
  --background-primary: #ffffff;
  --background-secondary: #f8f9fa;
  --background-tertiary: #e8f5e8;
  
  --border-light: #e1e1e1;
  --border-medium: #cccccc;
  --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-heavy: 0 8px 16px rgba(0,0,0,0.2);
  
  --border-radius: 8px;
  --border-radius-small: 4px;
  --border-radius-large: 12px;
  
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.4s ease;
  
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --section-padding-small: 60px 0;
  
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-family-heading: 'Georgia', serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-primary);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  margin-bottom: 0.5em;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin-bottom: 1em;
  color: var(--text-secondary);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Container and Layout */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.4;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

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

.btn-tertiary {
  background-color: var(--background-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-tertiary:hover {
  background-color: var(--border-light);
}

/* Header and Navigation */
.header {
  background-color: var(--background-primary);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
}

.logo {
  margin-right: 12px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-family-heading);
}

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

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--background-tertiary) 0%, #f1f8e9 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%234caf50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image svg {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* About Section */
.about {
  background-color: var(--background-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

.stat {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--background-primary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.stat h4 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--background-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.service-icon {
  margin-bottom: 1.5rem;
}

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

/* Plants Section */
.plants {
  background-color: var(--background-tertiary);
}

.plants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.plant-card {
  background-color: var(--background-primary);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.plant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.plant-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: var(--primary-color);
  color: var(--text-white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.plant-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.plant-card p {
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
  background-color: var(--background-secondary);
}

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

.review-card {
  background-color: var(--background-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-light);
  opacity: 0.3;
}

.stars {
  color: var(--accent-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reviewer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.reviewer strong {
  color: var(--primary-color);
  display: block;
}

.reviewer span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-white);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.checkbox-group {
  text-align: left;
  margin-top: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent-color);
}

.checkbox-group a {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Contact Section */
.contact {
  background-color: var(--background-secondary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

.social-media h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: var(--text-white);
  padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
  color: #cccccc;
  transition: var(--transition-fast);
}

.footer-section ul li a:hover,
.footer-section ul li a.active {
  color: var(--primary-light);
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #888888;
  margin: 0;
}

/* Blog Styles */
.blog-hero {
  background: linear-gradient(135deg, var(--background-tertiary) 0%, #f1f8e9 100%);
  padding: 120px 0 80px;
  text-align: center;
}

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

.blog-section {
  padding: var(--section-padding);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--background-primary);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-date,
.blog-category {
  color: var(--text-light);
}

.blog-category {
  color: var(--primary-color);
  font-weight: 500;
}

.blog-content h2 {
  margin-bottom: 1rem;
}

.blog-content h2 a {
  color: var(--text-primary);
  text-decoration: none;
}

.blog-content h2 a:hover {
  color: var(--primary-color);
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Article Styles */
.article-hero {
  background: linear-gradient(135deg, var(--background-tertiary) 0%, #f1f8e9 100%);
  padding: 120px 0 60px;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--primary-color);
}

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

.article-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.article-date,
.article-category,
.article-author {
  position: relative;
}

.article-category {
  color: var(--primary-color);
  font-weight: 500;
}

.article-content {
  padding: 4rem 0;
}

.article-image {
  margin-bottom: 3rem;
  text-align: center;
}

.article-image svg {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.article-text {
  max-width: 800px;
  margin: 0 auto;
}

.article-text h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-text h3 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-text h4 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.article-text ul,
.article-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-text li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.article-text blockquote {
  background-color: var(--background-tertiary);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--border-radius);
  font-style: italic;
}

.article-text blockquote p {
  margin: 0;
  color: var(--text-primary);
}

.article-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--background-primary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.article-text th,
.article-text td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.article-text th {
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
}

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

.article-text tr:nth-child(even) {
  background-color: var(--background-secondary);
}

.article-share {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

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

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  color: var(--text-white);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.share-btn.facebook {
  background-color: #1877f2;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.pinterest {
  background-color: #bd081c;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.related-articles {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.related-articles h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.related-card {
  background-color: var(--background-secondary);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
}

.related-card h4 {
  margin-bottom: 0.5rem;
}

.related-card h4 a {
  color: var(--text-primary);
  text-decoration: none;
}

.related-card h4 a:hover {
  color: var(--primary-color);
}

.related-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Thank You Page Styles */
.thank-you-hero {
  background: linear-gradient(135deg, var(--background-tertiary) 0%, #f1f8e9 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.thank-you-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thank-you-icon {
  margin-bottom: 2rem;
}

.thank-you-image {
  margin-top: 2rem;
}

.thank-you-image svg {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.expect-section {
  background-color: var(--background-secondary);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.expect-card {
  background-color: var(--background-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.expect-icon {
  margin-bottom: 1.5rem;
}

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

.next-steps {
  padding: var(--section-padding);
}

.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 60px;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: var(--border-light);
}

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

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

.browse-content {
  background-color: var(--background-secondary);
}

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

.browse-card {
  background-color: var(--background-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.browse-icon {
  margin-bottom: 1.5rem;
}

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

.browse-card .btn {
  margin-top: 1rem;
}

.social-follow {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--text-white);
}

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

.social-content h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.social-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.social-links-large {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link-large {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.social-link-large:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--text-white);
}

/* Legal Pages */
.legal-hero {
  background: linear-gradient(135deg, var(--background-tertiary) 0%, #f1f8e9 100%);
  padding: 120px 0 60px;
}

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

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.legal-content {
  padding: 4rem 0;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  color: var(--primary-color);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.legal-text h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-text h3 {
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text h4 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-text ul,
.legal-text ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.legal-text strong {
  color: var(--text-primary);
}

.contact-info {
  background-color: var(--background-secondary);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  border-left: 4px solid var(--primary-color);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--background-primary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.cookies-table th,
.cookies-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.cookies-table th {
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
}

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

.cookies-table tr:nth-child(even) {
  background-color: var(--background-secondary);
}

.cookie-controls {
  margin: 2rem 0;
  text-align: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-primary);
  color: var(--text-white);
  padding: 1.5rem;
  z-index: 10000;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: var(--transition);
}

.cookie-banner:not(.hidden) {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.cookie-content p {
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

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

.cookie-buttons .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--background-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}

.cookie-modal:not(.hidden) .modal-content {
  transform: translateY(0);
}

.modal-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cookie-category input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary-color);
}

.cookie-category p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  margin-left: 2rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.modal-buttons .btn {
  flex: 1;
  min-width: 120px;
}

/* Hidden utility class */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-primary);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .plants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .social-links-large {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn {
    flex: none;
  }
  
  .article-hero h1 {
    font-size: 2rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .share-buttons {
    justify-content: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .browse-grid {
    grid-template-columns: 1fr;
  }
  
  .expect-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .plants-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .plant-card,
  .review-card {
    padding: 1.5rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .article-text {
    padding: 0 1rem;
  }
  
  .article-text table {
    font-size: 0.8rem;
  }
  
  .article-text th,
  .article-text td {
    padding: 8px 12px;
  }
  
  .cookie-modal {
    padding: 1rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .cookie-banner,
  .cookie-modal,
  .social-links,
  .share-buttons,
  .btn {
    display: none !important;
  }
  
  .article-content,
  .legal-content {
    padding: 0;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a {
    text-decoration: underline;
  }
  
  .article-text,
  .legal-text {
    max-width: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #1a5d1a;
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-light: #666666;
    --border-medium: #333333;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 8px;
  text-decoration: none;
  z-index: 10002;
}

.skip-link:focus {
  top: 6px;
}
