diff --git a/src/components/cost-estimator/step-8-branding.tsx b/src/components/cost-estimator/step-8-branding.tsx
index 8d9dbb4..fdf534b 100644
--- a/src/components/cost-estimator/step-8-branding.tsx
+++ b/src/components/cost-estimator/step-8-branding.tsx
@@ -3,7 +3,7 @@
import type { FormData, BrandingSelection } from './cost-estimator-form';
import { Button } from '@/components/ui/button';
import { Card, CardContent } from '@/components/ui/card';
-import { Gauge, Compass, PaintBrush, Zap, X } from 'lucide-react';
+import { Gauge, Compass, Paintbrush, Zap, X } from 'lucide-react';
import React, { useState, useMemo } from 'react';
type Step8Props = {
@@ -15,7 +15,7 @@ type Step8Props = {
const brandingOptions = [
{ id: 'full-cycle', title: 'I need a full-cycle branding for my project', hours: 80, icon: },
- { id: 'brush-up', title: 'I need to brush up on my existing project', hours: 40, icon: },
+ { id: 'brush-up', title: 'I need to brush up on my existing project', hours: 40, icon: },
{ id: 'logo-only', title: 'I just need a logo', hours: 20, icon: },
{ id: 'none', title: "No, I'm better off without it", hours: 0, icon: },
];