    /* Custom CSS with performance optimizations */
    :root {
      --primary-color: #047857;
      --primary-light: #059669;
      --primary-dark: #065f46;
      --secondary-color: #f59e0b;
      --text-color: #1f2937;
      --light-bg: #f0fdf4;
    }
    
    /* Use Inter as main font with system font fallback */
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
                   Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      scroll-behavior: smooth;
      color: var(--text-color);
      line-height: 1.6;
    }

    .h-10{
        max-width: 100;
        max-height: 100;
    }
    
    /* Performance optimized smooth scrolling */
    @media (prefers-reduced-motion: no-preference) {
      html {
        scroll-behavior: smooth;
      }
    }
    
    /* Custom scrollbar styles */
    ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }
    
    /* Focus styles for accessibility */
    :focus {
      outline: 3px solid var(--secondary-color);
      outline-offset: 2px;
    }
    
    /* Hide mobile menu by default */
    #mobileMenu {
      display: none;
    }
    
    /* Animation classes */
    .fade-in {
      animation: fadeIn 0.5s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    /* Custom button styles */
    .btn-primary {
      background-color: var(--primary-color);
      color: white;
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline {
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
      transition: all 0.3s ease;
    }
    
    .btn-outline:hover {
      background-color: var(--primary-color);
      color: white;
      transform: translateY(-2px);
    }
    
    /* Feature card hover effect */
    .feature-card {
      transition: all 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    /* Pricing card highlight */
    .pricing-card.popular {
      border: 2px solid var(--secondary-color);
      position: relative;
    }
    
    .popular-badge {
      position: absolute;
      top: -12px;
      right: 20px;
      background-color: var(--secondary-color);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    
    /* Testimonial styling */
    .testimonial-card {
      position: relative;
    }
    
    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 0;
      left: 10px;
      font-size: 5rem;
      color: rgba(5, 150, 105, 0.1);
      font-family: Georgia, serif;
      line-height: 1;
    }
    
    /* Form input styling */
    .form-input {
      transition: all 0.3s ease;
      border: 1px solid #d1d5db;
    }
    
    .form-input:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
    }
    
    /* Responsive typography */
    @media (min-width: 768px) {
      .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
      }
    }
    
    /* Print styles */
    @media print {
      .no-print {
        display: none !important;
      }
      
      body {
        font-size: 12pt;
        line-height: 1.5;
      }
    }