:root {
  /* Organic Color Palette */
  --primary-color: #689F38;
  --secondary-color: #8D6E63;
  --background-color: #F9FAFB;
  --footer-bg-color: #334155;
  --button-color: #558B2F;
  --section-bg-colors: #FFFFFF, #F1F8E9, #FFFFFF;
  
  /* Soft & Organic Color Variations */
  --primary-light: #8BC34A;
  --primary-dark: #33691E;
  --secondary-light: #A1887F;
  --secondary-dark: #5D4037;
  --accent-warm: #FFB74D;
  --accent-soft: #E8F5E8;
  
  /* Typography - Rounded & Friendly */
  --font-primary: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Quicksand', 'Nunito', system-ui, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Soft Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Organic Border Radius */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
  
  /* Soft Shadows */
  --shadow-soft-sm: 0 4px 12px -4px rgba(104, 159, 56, 0.1);
  --shadow-soft-md: 0 8px 24px -8px rgba(104, 159, 56, 0.15);
  --shadow-soft-lg: 0 12px 40px -12px rgba(104, 159, 56, 0.2);
  --shadow-soft-xl: 0 20px 60px -16px rgba(104, 159, 56, 0.25);
  
  /* Organic Gradients */
  --gradient-primary: linear-gradient(135deg, #689F38 0%, #8BC34A 100%);
  --gradient-secondary: linear-gradient(135deg, #8D6E63 0%, #A1887F 100%);
  --gradient-warm: linear-gradient(135deg, #FFB74D 0%, #FFA726 100%);
  --gradient-subtle: linear-gradient(135deg, #F1F8E9 0%, #FFFFFF 100%);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: #2D3748;
  background-color: var(--background-color);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(104, 159, 56, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(141, 110, 99, 0.03) 0%, transparent 50%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: #1A202C;
}

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--font-size-3xl);
  letter-spacing: -0.015em;
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--spacing-md);
  color: #4A5568;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
}

.section:nth-child(even) {
  background: var(--gradient-subtle);
}

/* Soft & Organic Cards */
.card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-soft-md);
  border: 1px solid rgba(104, 159, 56, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft-xl);
  border-color: rgba(104, 159, 56, 0.2);
}

.card-organic {
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #FFFFFF 0%, #F7FAFC 100%);
  position: relative;
}

.card-organic::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-organic:hover::after {
  opacity: 0.1;
}

/* Organic Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-base);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-soft-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: var(--shadow-soft-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  color: white;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
}

.btn-warm {
  background: var(--gradient-warm);
  color: white;
  box-shadow: var(--shadow-soft-sm);
}

.btn-warm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  color: white;
  text-decoration: none;
}

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(104, 159, 56, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-lg);
}

.nav a {
  color: #4A5568;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav a:hover {
  background: var(--accent-soft);
  color: var(--primary-color);
  text-decoration: none;
}

/* Footer Styles */
.footer {
  background: var(--footer-bg-color);
  color: #E2E8F0;
  padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
}

.footer h4 {
  color: #FFFFFF;
  margin-bottom: var(--spacing-lg);
}

.footer a {
  color: #CBD5E0;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
}

/* Form Elements */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: var(--spacing-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(104, 159, 56, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, 
    rgba(104, 159, 56, 0.05) 0%, 
    rgba(141, 110, 99, 0.05) 100%);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(104, 159, 56, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-lg);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  h1 { font-size: var(--font-size-4xl); }
  h2 { font-size: var(--font-size-3xl); }
  h3 { font-size: var(--font-size-2xl); }
  
  .header-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .nav {
    gap: var(--spacing-md);
  }
  
  .card {
    padding: var(--spacing-lg);
  }
  
  .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }
  
  .card {
    padding: var(--spacing-md);
  }
  
  .hero {
    padding: var(--spacing-2xl) 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero::before {
    animation: none;
  }
}

/* Focus States for Better Accessibility */
.btn:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid #000000;
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}