:root {
  --primary-color: #7C9473;
  --secondary-color: #CFE0C3;
  --background-color: #FFFFFF;
  --footer-bg-color: #4A5D44;
  --button-color: #7C9473;
  --section-bg-1: #FFFFFF;
  --section-bg-2: #F9FAF9;
  --section-bg-3: #FFFFFF;
  --text-primary: #2D3748;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px 0 rgba(124, 148, 115, 0.1), 0 1px 2px 0 rgba(124, 148, 115, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(124, 148, 115, 0.1), 0 2px 4px -1px rgba(124, 148, 115, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(124, 148, 115, 0.1), 0 4px 6px -2px rgba(124, 148, 115, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.75rem;
  margin-bottom: 1.75rem;
}

h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h6 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-bottom-color: var(--primary-color);
}

a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

section {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--section-bg-1);
}

.section-bg-subtle {
  background-color: var(--section-bg-2);
}

.section-bg-dark {
  background-color: var(--footer-bg-color);
  color: white;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--button-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #6B8160;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--section-bg-2);
  border-color: var(--primary-color);
}

.card {
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 148, 115, 0.1);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-featured {
  background: linear-gradient(135deg, var(--section-bg-1) 0%, var(--secondary-color) 100%);
  border: 1px solid rgba(124, 148, 115, 0.2);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(124, 148, 115, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.header {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: var(--section-bg-2);
  color: var(--primary-color);
}

.footer {
  background-color: var(--footer-bg-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hero {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--section-bg-1) 0%, var(--secondary-color) 100%);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #6B8160 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin: 4rem 0;
  border: none;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6B8160 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

code {
  background-color: var(--section-bg-2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .container-custom {
    padding: 0 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nature-pattern {
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(207, 224, 195, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(124, 148, 115, 0.2) 0%, transparent 50%);
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(124, 148, 115, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 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;
    }
}