:root {
  --primary-color: #2D8C4E;
  --secondary-color: #F4A261;
  --background-color: #FFFFFF;
  --footer-bg-color: #1A3B2E;
  --button-color: #2D8C4E;
  --section-bg-light: #F8F9FA;
  --section-bg-white: #FFFFFF;
  --section-bg-green: #E8F5E8;
  
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --border-medium: #D1D5DB;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --font-family-sans: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-heading: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-sans);
  color: var(--text-primary);
  line-height: 1.6;
  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: var(--font-family-heading);
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 65ch;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

a:hover {
  color: #236B3C;
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-light {
  background-color: var(--section-bg-light);
}

.section-white {
  background-color: var(--section-bg-white);
}

.section-green {
  background-color: var(--section-bg-green);
}

.header {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav a {
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.15s ease-in-out;
}

.nav a:hover {
  color: var(--primary-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
  min-height: 44px;
  text-align: center;
}

.btn-primary {
  background-color: var(--button-color);
  border-color: var(--button-color);
  color: white;
}

.btn-primary:hover {
  background-color: #236B3C;
  border-color: #236B3C;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-medium);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--background-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
}

.card {
  background-color: var(--background-color);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-title {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.card-body {
  margin-bottom: 1.5rem;
}

.card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.hero {
  background: linear-gradient(135deg, var(--section-bg-light) 0%, var(--section-bg-green) 100%);
  padding: 6rem 0;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: var(--background-color);
  color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 140, 78, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-help {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.form-error {
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 0.25rem;
}

.input-group {
  display: flex;
  gap: 0.5rem;
}

.input-group .form-input {
  flex: 1;
}

.alert {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid;
}

.alert-success {
  background-color: #F0FDF4;
  border-color: #BBF7D0;
  color: #166534;
}

.alert-error {
  background-color: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}

.alert-warning {
  background-color: #FFFBEB;
  border-color: #FED7AA;
  color: #92400E;
}

.alert-info {
  background-color: #EFF6FF;
  border-color: #BFDBFE;
  color: #1E40AF;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid transparent;
}

.badge-primary {
  background-color: rgba(45, 140, 78, 0.1);
  color: var(--primary-color);
  border-color: rgba(45, 140, 78, 0.2);
}

.badge-secondary {
  background-color: rgba(244, 162, 97, 0.1);
  color: #E8751A;
  border-color: rgba(244, 162, 97, 0.2);
}

.badge-outline {
  background-color: transparent;
  border-color: var(--border-medium);
  color: var(--text-secondary);
}

.divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 2rem 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--background-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.table th {
  background-color: var(--section-bg-light);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table tbody tr:hover {
  background-color: var(--section-bg-light);
}

.footer {
  background-color: var(--footer-bg-color);
  color: #E5E7EB;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: white;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p,
.footer-section a {
  color: #D1D5DB;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #9CA3AF;
  font-size: 0.875rem;
}

.utility-text-center {
  text-align: center;
}

.utility-text-left {
  text-align: left;
}

.utility-text-right {
  text-align: right;
}

.utility-mt-sm {
  margin-top: 0.5rem;
}

.utility-mt-md {
  margin-top: 1rem;
}

.utility-mt-lg {
  margin-top: 2rem;
}

.utility-mb-sm {
  margin-bottom: 0.5rem;
}

.utility-mb-md {
  margin-bottom: 1rem;
}

.utility-mb-lg {
  margin-bottom: 2rem;
}

.utility-ml-auto {
  margin-left: auto;
}

.utility-mr-auto {
  margin-right: auto;
}

.utility-w-full {
  width: 100%;
}

.utility-h-full {
  height: 100%;
}

.utility-flex {
  display: flex;
}

.utility-flex-col {
  flex-direction: column;
}

.utility-items-center {
  align-items: center;
}

.utility-justify-center {
  justify-content: center;
}

.utility-justify-between {
  justify-content: space-between;
}

.utility-gap-sm {
  gap: 0.5rem;
}

.utility-gap-md {
  gap: 1rem;
}

.utility-gap-lg {
  gap: 2rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    gap: 1rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    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;
}

.focus-visible:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.image-placeholder {
  background-color: var(--section-bg-light);
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  min-height: 200px;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.text-muted {
  color: var(--text-muted);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-primary {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.border {
  border: 1px solid var(--border-medium);
}

.border-light {
  border: 1px solid var(--border-light);
}

.rounded {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}


/* 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;
    }
}