   :root {
      --background: 0 0% 100%;
      --foreground: 222.2 84% 4.9%;

      --card: 0 0% 100%;
      --card-foreground: 222.2 84% 4.9%;

      --popover: 0 0% 100%;
      --popover-foreground: 222.2 84% 4.9%;

      --primary: 222.2 47.4% 11.2%;
      --primary-foreground: 210 40% 98%;

      --secondary: 210 40% 96.1%;
      --secondary-foreground: 222.2 47.4% 11.2%;

      --muted: 210 40% 96.1%;
      --muted-foreground: 215.4 16.3% 46.9%;

      --accent: 210 40% 96.1%;
      --accent-foreground: 222.2 47.4% 11.2%;

      --destructive: 0 84.2% 60.2%;
      --destructive-foreground: 210 40% 98%;

      --border: 214.3 31.8% 91.4%;
      --input: 214.3 31.8% 91.4%;
      --ring: 222.2 84% 4.9%;

      --radius: 0.5rem;

      --sidebar-background: 0 0% 98%;

      --sidebar-foreground: 240 5.3% 26.1%;

      --sidebar-primary: 240 5.9% 10%;

      --sidebar-primary-foreground: 0 0% 98%;

      --sidebar-accent: 240 4.8% 95.9%;

      --sidebar-accent-foreground: 240 5.9% 10%;

      --sidebar-border: 220 13% 91%;

      --sidebar-ring: 217.2 91.2% 59.8%;
   }

   #email-scraper a {
      text-decoration: underline;
      font-weight: bold;
   }

   h2,
   h3 {
      color: #0056b3;
   }

   strong {
      color: #007bff;
   }

   #email-scraper a:hover {
      color: #38d191
   }

   .text-blue-700 {
      --tw-text-opacity: 1;
      color: rgb(29 78 216 / var(--tw-text-opacity, 1));
   }

   .bg-blue-100 {
      --tw-bg-opacity: 1;
      background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
   }

   .items-center {
      align-items: center;
   }

   .inline-flex {
      display: inline-flex;
   }

   .rounded-full {
      border-radius: 9999px;
   }

   .text-5xl {
      font-size: 3rem;
      line-height: 1.2;
   }

   .text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem;
   }

   @media (min-width: 768px) {
      .md\:text-7xl {
         font-size: 4.5rem;
         line-height: 1.3;
      }

      .md\:text-2xl {
         font-size: 1.5rem;
         line-height: 2rem;
      }
   }

   .font-bold {
      font-weight: 700;
   }

   .text-slate-900 {
      --tw-text-opacity: 1;
      color: rgb(15 23 42 / var(--tw-text-opacity, 1));
   }

   .text-transparent {
      color: transparent;
   }

   .bg-clip-text {
      -webkit-background-clip: text;
      background-clip: text;
   }

   .to-purple-600 {
      --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
   }

   .from-blue-600 {
      --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
      --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
   }

   .bg-gradient-to-r {
      background-image: linear-gradient(to right, #2563eb, #9333ea);
   }

   .text-sm {
      font-size: .875rem;
      line-height: 1.25rem;
   }

   .max-w-3xl {
      max-width: 48rem;
   }

   body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #333;
      min-height: 100vh;
   }

   .container {
      max-width: 1280px;
      margin: 0 auto;
   }

   .features-section {
      padding: 4rem 0;
   }

   .section-header {
      text-align: center;
      margin-bottom: 3rem;
   }

   .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 1rem;
   }

   .section-description {
      font-size: 1.2rem;
      color: #4a5568;
      max-width: 600px;
      margin: 0 auto;
   }

   .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
   }

   .feature-card {
      background: white;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
      position: relative;
      overflow: hidden;
   }

   .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border-color: #3182ce;
   }

   .feature-content {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
   }

   .feature-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #3182ce, #63b3ed);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
   }

   .feature-icon svg {
      width: 24px;
      height: 24px;
      color: white;
   }

   .feature-details {
      flex: 1;
   }

   .feature-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 0.75rem;
   }

   .feature-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1a202c;
      transition: color 0.3s ease;
   }

   .feature-card:hover .feature-title {
      color: #3182ce;
   }

   .feature-badge {
      background: #f0fff4;
      color: #22543d;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 500;
      border: 1px solid #c6f6d5;
   }

   .feature-description {
      color: #4a5568;
      font-size: 0.9rem;
      line-height: 1.5;
   }

   .trust-indicator {
      margin-top: 3rem;
      text-align: center;
   }

   .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #ebf8ff;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      border: 1px solid #bee3f8;
   }

   .trust-icon {
      color: #f6ad55;
   }

   .trust-text {
      color: #2d3748;
      font-weight: 500;
      font-size: 0.9rem;
   }

   @media (max-width: 768px) {
      .features-grid {
         grid-template-columns: 1fr;
      }

      .section-title {
         font-size: 2rem;
      }

      .container {
         padding: 1rem;
      }
   }

   .content-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
   }

   .content-section h2 {
      font-size: 1.75rem;
      font-weight: 600;
      color: #1a202c;
      margin-top: 3rem;
      margin-bottom: 1rem;
   }

   .content-section h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 1rem;
   }

   .content-section p {
      color: #4a5568;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 1rem;
   }

   .content-section strong {
      color: #2d3748;
      font-weight: 600;
   }

   @media (max-width: 768px) {
      .content-section h2 {
         font-size: 1.5rem;
      }

      .content-section h3 {
         font-size: 1.25rem;
      }
   }

   /* Styling for the new icon-based paragraphs */
   .icon-text-container {
      display: flex;
      align-items: flex-start;
   }

   .icon-text-container .icon {
      font-size: 1.2em;
      margin-right: 10px;
      min-width: 20px;
      /* Ensure icon has enough space */
      text-align: center;
   }

   .icon-text-container p {
      margin-bottom: 0;
      /* Remove default paragraph margin */
   }

   .note-box {
      background-color: #fff3cd;
      /* Light yellow background */
      border-left: 5px solid #ffc107;
      /* Orange border */
      padding: 15px;
      margin-top: 20px;
      margin-bottom: 20px;
      border-radius: 5px;
   }

   .note-box .icon {
      color: #ffc107;
   }
   .step-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        .step-icon {
            font-size: 24px;
            color: #28a745; /* Green color for icons */
            margin-right: 15px;
            min-width: 30px; /* Ensure icon has enough space */
            text-align: center;
        }
        .step-content {
            flex-grow: 1;
        }
        .step-content p {
            margin-bottom: 5px; /* Adjust spacing for paragraphs within steps */
        }
        .tab-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin-top: 10px;
            margin-bottom: 20px;
        }