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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2D2D2D;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 50%, #0f2820 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F4E8D8;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-shadow: 0 0 30px rgba(123, 168, 133, 0.5);
}

h2 {
  font-size: 32px;
  text-shadow: 0 0 20px rgba(123, 168, 133, 0.3);
}

h3 {
  font-size: 24px;
  color: #7BA885;
}

h4 {
  font-size: 18px;
  color: #F4E8D8;
}

p {
  margin-bottom: 16px;
  color: #E0E0E0;
  line-height: 1.8;
}

a {
  color: #7BA885;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #9FD3A8;
  text-shadow: 0 0 10px rgba(123, 168, 133, 0.6);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(10, 31, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(123, 168, 133, 0.3);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(123, 168, 133, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(123, 168, 133, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(123, 168, 133, 0.8));
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F4E8D8;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(123, 168, 133, 0.3);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7BA885, #9FD3A8);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(123, 168, 133, 0.6);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #9FD3A8;
  text-shadow: 0 0 15px rgba(123, 168, 133, 0.8);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #2D5F3F, #1a3a2e);
  border: 2px solid #7BA885;
  color: #F4E8D8;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(123, 168, 133, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #3a7050, #2D5F3F);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(123, 168, 133, 0.7), 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0a1f1a 0%, #1a3a2e 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7), -2px 0 20px rgba(123, 168, 133, 0.3);
  border-left: 3px solid rgba(123, 168, 133, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #7BA885;
  color: #F4E8D8;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(123, 168, 133, 0.3);
}

.mobile-menu-close:hover {
  background: rgba(123, 168, 133, 0.2);
  transform: rotate(90deg);
  box-shadow: 0 0 25px rgba(123, 168, 133, 0.6);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #F4E8D8;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(45, 95, 63, 0.2);
  border: 1px solid rgba(123, 168, 133, 0.3);
  text-shadow: 0 0 5px rgba(123, 168, 133, 0.3);
}

.mobile-nav a:hover {
  background: rgba(45, 95, 63, 0.4);
  transform: translateX(10px);
  border-color: #7BA885;
  box-shadow: 0 0 20px rgba(123, 168, 133, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f2820 0%, #1a4033 50%, #0a2018 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid rgba(123, 168, 133, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(123, 168, 133, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(45, 95, 63, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #F4E8D8;
  text-shadow: 0 0 40px rgba(123, 168, 133, 0.6), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #E0E0E0;
  margin-bottom: 32px;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  color: #7BA885;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0 0 10px rgba(123, 168, 133, 0.5);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #2D5F3F, #1a4033);
  color: #F4E8D8;
  border-color: #7BA885;
  box-shadow: 0 4px 15px rgba(45, 95, 63, 0.4), 0 0 20px rgba(123, 168, 133, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3a7050, #2D5F3F);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 95, 63, 0.6), 0 0 30px rgba(123, 168, 133, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #7BA885;
  border-color: #7BA885;
  box-shadow: 0 0 15px rgba(123, 168, 133, 0.3);
}

.btn-secondary:hover {
  background: rgba(123, 168, 133, 0.15);
  border-color: #9FD3A8;
  color: #9FD3A8;
  box-shadow: 0 0 25px rgba(123, 168, 133, 0.5);
}

/* Sections */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.problem-solution {
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
  padding: 60px 20px;
  border-top: 2px solid rgba(123, 168, 133, 0.2);
  border-bottom: 2px solid rgba(123, 168, 133, 0.2);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  text-align: center;
  margin-bottom: 40px;
}

.problem-box,
.solution-box {
  background: rgba(45, 95, 63, 0.2);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  border: 2px solid rgba(123, 168, 133, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(123, 168, 133, 0.1);
}

.problem-box h3,
.solution-box h3 {
  color: #7BA885;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(123, 168, 133, 0.4);
}

.problem-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-box li {
  color: #E0E0E0;
  padding-left: 28px;
  position: relative;
}

.problem-box li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: #7BA885;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(123, 168, 133, 0.5);
}

/* Services Overview */
.services-overview {
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
  padding: 60px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 48px;
}

.services-grid,
.benefits-grid,
.testimonials-grid,
.team-grid,
.workshops-grid,
.articles-grid,
.categories-grid,
.plants-grid,
.values-grid,
.basics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.benefit-item,
.testimonial-card,
.team-member,
.workshop-card,
.article-card,
.category-card,
.plant-card,
.value-item,
.basic-item {
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 133, 0.1);
  position: relative;
}

.service-card:hover,
.benefit-item:hover,
.workshop-card:hover,
.article-card:hover,
.category-card:hover,
.plant-card:hover,
.value-item:hover,
.basic-item:hover {
  transform: translateY(-8px);
  border-color: #7BA885;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(123, 168, 133, 0.3);
}

.service-card h3,
.workshop-card h3,
.article-card h3,
.plant-card h3 {
  color: #F4E8D8;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(123, 168, 133, 0.3);
}

.price {
  color: #7BA885;
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
  text-shadow: 0 0 15px rgba(123, 168, 133, 0.5);
}

.duration,
.spots {
  color: #B0B0B0;
  font-size: 14px;
}

/* Benefits Section */
.benefits {
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
  padding: 60px 20px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefit-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(123, 168, 133, 0.5));
}

.benefit-item h3 {
  color: #7BA885;
  margin-bottom: 12px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background: rgba(45, 95, 63, 0.3);
  border: 2px solid rgba(123, 168, 133, 0.4);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 133, 0.2);
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #F4E8D8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.author {
  color: #7BA885;
  font-weight: 600;
  margin-bottom: 8px;
}

.rating {
  color: #FFD700;
  font-size: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

.stat-item strong {
  display: block;
  font-size: 48px;
  color: #7BA885;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(123, 168, 133, 0.5);
}

.stat-item span {
  color: #E0E0E0;
  font-size: 16px;
}

/* CTA Banner */
.cta-banner,
.cta-section,
.cta-simple {
  background: linear-gradient(135deg, #1a4033 0%, #0f2820 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 2px solid rgba(123, 168, 133, 0.3);
  border-bottom: 2px solid rgba(123, 168, 133, 0.3);
}

.cta-banner h2,
.cta-section h2,
.cta-simple h2 {
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p,
.cta-simple p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #E0E0E0;
}

.hours,
.availability,
.address,
.guarantee {
  color: #7BA885;
  margin-top: 24px;
  font-size: 16px;
}

/* Page Hero */
.page-hero,
.page-hero-simple {
  background: linear-gradient(135deg, #0f2820 0%, #1a4033 100%);
  padding: 60px 20px 40px;
  border-bottom: 2px solid rgba(123, 168, 133, 0.3);
}

.breadcrumb {
  color: #B0B0B0;
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: #7BA885;
}

.page-hero h1,
.page-hero-simple h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #E0E0E0;
  max-width: 800px;
}

.last-updated {
  color: #B0B0B0;
  font-size: 14px;
  font-style: italic;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 20px;
}

.service-detail {
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 133, 0.1);
}

.service-detail h2 {
  color: #F4E8D8;
  margin-bottom: 16px;
}

.service-detail h3 {
  color: #7BA885;
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-bottom: 24px;
}

.service-detail li {
  color: #E0E0E0;
  padding: 8px 0 8px 32px;
  position: relative;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA885;
  font-weight: 700;
  font-size: 18px;
}

/* Story Section */
.story,
.values {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.story h2,
.values h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team > .container > p {
  text-align: center;
  margin-bottom: 48px;
  color: #B0B0B0;
}

.team-member h3 {
  color: #F4E8D8;
  margin-bottom: 8px;
}

.role {
  color: #7BA885;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Plant Categories */
.plant-categories,
.blog-categories {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.plant-categories h2,
.blog-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.category-card h3 {
  color: #F4E8D8;
  margin-bottom: 8px;
}

.count {
  color: #7BA885;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Featured Plants */
.featured-plants {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
}

.featured-plants h2 {
  text-align: center;
  margin-bottom: 48px;
}

.common-name {
  color: #7BA885;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 12px;
}

.plant-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.badge {
  background: rgba(45, 95, 63, 0.4);
  color: #7BA885;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(123, 168, 133, 0.3);
  text-shadow: 0 0 5px rgba(123, 168, 133, 0.3);
}

/* Plant Care Basics */
.plant-care-basics {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.plant-care-basics h2 {
  text-align: center;
  margin-bottom: 16px;
}

.plant-care-basics > .container > p {
  text-align: center;
  margin-bottom: 48px;
  color: #B0B0B0;
}

.basic-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(123, 168, 133, 0.5));
}

/* Workshop Benefits */
.workshop-benefits {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.workshop-benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Upcoming Workshops */
.upcoming-workshops {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
}

.upcoming-workshops h2 {
  text-align: center;
  margin-bottom: 48px;
}

.date {
  color: #7BA885;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Featured Article */
.featured-article {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.featured-post {
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.4);
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(123, 168, 133, 0.2);
}

.featured-post h2 {
  color: #F4E8D8;
  margin-bottom: 16px;
}

.meta {
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 16px;
}

/* Recent Articles */
.recent-articles {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
}

.recent-articles h2 {
  text-align: center;
  margin-bottom: 48px;
}

.category {
  display: inline-block;
  background: rgba(45, 95, 63, 0.4);
  color: #7BA885;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(123, 168, 133, 0.3);
}

.category-tag {
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  color: #7BA885;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.category-tag:hover {
  background: rgba(45, 95, 63, 0.4);
  border-color: #7BA885;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(123, 168, 133, 0.3);
}

/* Contact Methods */
.contact-methods {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-card {
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 16px;
  padding: 40px;
  flex: 1 1 350px;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 133, 0.1);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  border-color: #7BA885;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(123, 168, 133, 0.3);
}

.method-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 15px rgba(123, 168, 133, 0.5));
}

.method-card h3 {
  color: #F4E8D8;
  margin-bottom: 12px;
}

.detail {
  color: #7BA885;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

/* Contact Info */
.contact-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-info > .container > p {
  text-align: center;
  margin-bottom: 40px;
  color: #B0B0B0;
  font-size: 18px;
}

.contact-details {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 133, 0.1);
}

.contact-details p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* SOS Section */
.sos-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.sos-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(45, 95, 63, 0.3);
  border: 3px solid rgba(123, 168, 133, 0.5);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(123, 168, 133, 0.2);
}

.sos-box h2 {
  margin-bottom: 16px;
}

.response {
  color: #7BA885;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Business Hours */
.business-hours {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
}

.business-hours h2 {
  text-align: center;
  margin-bottom: 32px;
}

.hours-list {
  max-width: 500px;
  margin: 0 auto 24px;
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hours-list p {
  margin-bottom: 12px;
  font-size: 16px;
}

.note {
  text-align: center;
  color: #B0B0B0;
  font-style: italic;
  font-size: 14px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
}

.legal-content .content-wrapper {
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 133, 0.1);
}

.legal-content h2 {
  color: #F4E8D8;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #7BA885;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
}

.legal-content li {
  color: #E0E0E0;
  margin-bottom: 8px;
  padding-left: 8px;
  list-style: disc;
  list-style-position: outside;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #0f2820 0%, #1a4033 100%);
  padding: 100px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.icon-checkmark {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2D5F3F, #1a4033);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #F4E8D8;
  margin: 0 auto 32px;
  border: 3px solid #7BA885;
  box-shadow: 0 0 40px rgba(123, 168, 133, 0.5);
}

.thank-you-content h1 {
  margin-bottom: 24px;
}

.thank-you-content h2 {
  color: #7BA885;
  margin-top: 40px;
  margin-bottom: 24px;
}

.thank-you-content ul {
  text-align: left;
  max-width: 500px;
  margin: 24px auto;
}

.thank-you-content li {
  color: #E0E0E0;
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.thank-you-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BA885;
  font-weight: 700;
  font-size: 18px;
}

/* What Now Section */
.what-now,
.contact-reminder {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
}

.what-now h2,
.contact-reminder h2 {
  text-align: center;
  margin-bottom: 48px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-card {
  background: rgba(26, 58, 46, 0.6);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(123, 168, 133, 0.1);
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  border-color: #7BA885;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(123, 168, 133, 0.3);
}

.action-card h3 {
  color: #F4E8D8;
  margin-bottom: 16px;
}

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

.contact-reminder p {
  max-width: 600px;
  margin: 0 auto 16px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0a1f1a 0%, #050f0d 100%);
  color: #E0E0E0;
  padding: 60px 20px 20px;
  border-top: 3px solid rgba(123, 168, 133, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(123, 168, 133, 0.5));
}

.footer-col h4 {
  color: #7BA885;
  margin-bottom: 16px;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(123, 168, 133, 0.4);
}

.footer-col p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #E0E0E0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #7BA885;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(123, 168, 133, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #B0B0B0;
  font-size: 14px;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a1f1a 0%, #1a3a2e 100%);
  border-top: 3px solid rgba(123, 168, 133, 0.5);
  padding: 24px 20px;
  z-index: 950;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(123, 168, 133, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 300px;
  color: #E0E0E0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: linear-gradient(135deg, #2D5F3F, #1a4033);
  color: #F4E8D8;
  border-color: #7BA885;
  box-shadow: 0 2px 10px rgba(45, 95, 63, 0.4);
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #3a7050, #2D5F3F);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 95, 63, 0.6);
}

.cookie-reject {
  background: transparent;
  color: #7BA885;
  border-color: #7BA885;
}

.cookie-reject:hover {
  background: rgba(123, 168, 133, 0.1);
  border-color: #9FD3A8;
}

.cookie-settings {
  background: transparent;
  color: #B0B0B0;
  border-color: #555;
}

.cookie-settings:hover {
  color: #E0E0E0;
  border-color: #7BA885;
}

/* Cookie Preferences Modal */
#cookie-preferences {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-preferences.active {
  display: flex;
}

.cookie-modal {
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2820 100%);
  border: 3px solid rgba(123, 168, 133, 0.5);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(123, 168, 133, 0.3);
}

.cookie-modal h2 {
  color: #F4E8D8;
  margin-bottom: 24px;
  text-align: center;
}

.cookie-option {
  background: rgba(45, 95, 63, 0.2);
  border: 2px solid rgba(123, 168, 133, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cookie-option h3 {
  color: #7BA885;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #333;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 2px solid #555;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #2D5F3F, #1a4033);
  border-color: #7BA885;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #F4E8D8;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-option p {
  color: #B0B0B0;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .team-grid,
  .workshops-grid,
  .articles-grid,
  .plants-grid,
  .values-grid,
  .basics-grid,
  .methods-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card,
  .benefit-item,
  .testimonial-card,
  .team-member,
  .workshop-card,
  .article-card,
  .plant-card,
  .value-item,
  .basic-item,
  .method-card,
  .action-card {
    max-width: 100%;
    width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 32px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-modal {
    padding: 24px;
  }

  .legal-content .content-wrapper {
    padding: 24px;
  }
}

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

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 20px;
  }

  .section,
  .problem-solution,
  .services-overview,
  .benefits,
  .testimonials,
  .cta-banner,
  .cta-section {
    padding: 40px 20px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .service-card,
  .benefit-item,
  .problem-box,
  .solution-box,
  .service-detail,
  .method-card,
  .cookie-modal {
    padding: 24px;
  }

  .mobile-menu {
    width: 280px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(123, 168, 133, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(123, 168, 133, 0.6);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}