  body {
            font-family: 'Poppins', sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }
        
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .form-step {
            display: none;
            padding: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .form-step.active {
            display: block;
        }
        
        .progress {
            height: 20px;
            margin-bottom: 20px;
            border-radius: 10px;
        }
        
        .progress-bar {
            background-color: #3764EB;
            transition: width 0.3s ease;
        }
        
        .form-label {
            font-weight: 600;
            margin-top: 15px;
            margin-bottom: 5px;
        }
        
        .btn-primary {
            background-color: #3764EB;
            border-color: #3764EB;
        }
        
        .btn-primary:hover {
            background-color: #2a52c7;
            border-color: #2a52c7;
        }
        
        .btn-secondary {
            background-color: #6c757d;
            border-color: #6c757d;
        }
        
        .btn-success {
            background-color: #28a745;
            border-color: #28a745;
        }
        
        .rate-display {
            background-color: #f8f9fa;
            padding: 10px;
            border-radius: 5px;
            margin-top: 5px;
            font-weight: bold;
        }
        
        .rate-input-group {
            display: none;
        }
        
        .required-field::after {
            content: " *";
            color: red;
        }
        
        .form-header {
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .benefits-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .benefits-list li {
            padding: 5px 0;
        }
        
        .benefits-list li i {
            color: #28a745;
            margin-right: 10px;
        }
        
        .vehicle-card {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            background-color: #f8f9fa;
        }
        
        .vehicle-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .vehicle-title {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .delete-vehicle {
            color: #dc3545;
            cursor: pointer;
        }
        
        .add-vehicle-btn {
            margin-top: 10px;
        }
        
        .database-info {
            background-color: #e9f7fe;
            padding: 10px;
            border-radius: 5px;
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        .form-icon {
            background-color: #e9ecef;
            border-radius: 5px;
            padding: 10px;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .form-icon i {
            font-size: 2rem;
            color: #3764EB;
        }