:root {
            --primary-color: #4f46e5;
            --secondary-color: #10b981;
            --accent-color: #f97316;
            --background-color: #f5f7fa;
            --light-color: #ffffff;
            --dark-color: #1f2937;
            --text-color: #374151;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
        }
        
        .container-custom {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #4338ca;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            color: white;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background-color: #059669;
            transform: translateY(-2px);
        }
        
        .signature-option {
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .signature-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .signature-option.selected {
            border-color: var(--primary-color);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .feature-card {
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .canvas-container {
            position: relative;
            margin: 0 auto;
        }
        
        #signature-canvas {
            position: absolute;
            top: 0;
            left: 0;
            cursor: crosshair;
        }
        
        .signature-font-1 {
            font-family: 'Pinyon Script', cursive;
        }
        
        .signature-font-2 {
            font-family: 'Satisfy', cursive;
        }
        
        .signature-font-3 {
            font-family: 'Dancing Script', cursive;
        }
        
        .signature-font-4 {
            font-family: 'Great Vibes', cursive;
        }

        .hero-section{
            margin-top: 30px;
        }
        .signature-preview {
            min-height: 100px;
            background-color: white;
            background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0), 
                              linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

         .signature-style-1 {
            font-family: 'Dancing Script', cursive;
         }