/* Critical CSS - Moved from inline to external file for better text-HTML ratio */
body { 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
  margin: 0; 
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.gradient-text { 
  background: linear-gradient(135deg, #28a745, #20c997); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}
.btn-primary { 
  background: linear-gradient(135deg, #28a745, #20c997); 
  color: white; 
  border-radius: 8px; 
  padding: 12px 24px; 
  font-weight: 600;
  transition: transform 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
}
img { 
  max-width: 100%; 
  height: auto; 
  loading: lazy;
}

