          /* Base Styles */
        body {
            font-family: 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        }
        
        .form-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .form-left {
            flex: 1;
            padding: 2rem;
            border-right: 1px solid #eee;
        }
        
        .form-right {
            width: 350px;
            padding: 2rem;
            background: #f9fbfd;
        }
        
        .step-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }
        
        .step-subtitle {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 15px;
        }
        
        .highlight {
            color: #e0007c;
        }
        
        /* Form Elements */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
        }
        
        /* Radio and Checkbox Styles */
        .radio-group {
            margin: 1.5rem 0;
        }
        
        .radio-group label {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            cursor: pointer;
        }
        
        .radio-group input[type="radio"] {
            margin-right: 10px;
        }
        
        .checkbox-group {
            margin: 1.5rem 0;
        }
        
        .checkbox-group label {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            cursor: pointer;
        }
        
        .checkbox-group input[type="checkbox"] {
            margin-right: 10px;
        }
        
        /* Counter Controls */
        .counter-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .counter-controls {
            display: flex;
            align-items: center;
        }
        
        .counter-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: #fff;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
        }
        
        .counter-value {
            margin: 0 15px;
            min-width: 20px;
            text-align: center;
        }
        
        /* Summary Card */
        .summary-card {
            background: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        .card-title {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        
        .card-zip {
            font-size: 14px;
            color: #666;
            margin-bottom: 1rem;
        }
        
        .card-details {
            font-size: 14px;
        }
        
        .card-details p {
            margin: 0.5rem 0;
        }
        
        .card-details ul {
            margin: 0.5rem 0;
            padding-left: 20px;
        }
        
        .edit-link {
            color: #e0007c;
            font-size: 12px;
            margin-left: 8px;
            text-decoration: none;
        }
        
        .edit-link:hover {
            text-decoration: underline;
        }
        
        /* FAQ Accordion */
        .faq-accordion {
            margin: 2rem 0;
        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
        }
        
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 16px 0;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            cursor: pointer;
        }
        
        .faq-question:hover {
            color: #e0007c;
        }
        
        .faq-toggle {
            font-size: 18px;
        }
        
        .faq-answer {
            padding: 0 0 16px 0;
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            display: none;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: #e0007c;
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background-color: #c8006c;
        }
        
        .btn-link {
            color: #666;
            background: none;
            border: none;
            padding: 0;
        }
        
        .btn-link:hover {
            color: #e0007c;
            text-decoration: underline;
        }
        
        /* Navigation */
        .step-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .form-container {
                flex-direction: column;
            }
            
            .form-right {
                width: 100%;
                border-top: 1px solid #eee;
            }
        }
        
        /* Success/Error Messages */
        .alert {
            max-width: 600px;
            margin: 20px auto;
            padding: 20px;
            border-radius: 5px;
        }
        
        .alert-success {
            background: #d4edda;
            color: #155724;
        }
        
        .alert-danger {
            background: #f8d7da;
            color: #721c24;
        }
        
        /* Hidden fields container */
        .hidden-fields {
            display: none;
        }
        
        /* Step-specific styles */
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
        }
        
        /* Upholstery dropdown */
        .upholstery-select select {
            width: 100%;
            height: 200px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
        }
        
        /* Info tooltip */
        .info-tooltip {
            display: inline-block;
            width: 16px;
            height: 16px;
            background-color: #e0007c;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 16px;
            font-size: 12px;
            margin-left: 5px;
            cursor: help;
        }
    